fix: nushell
This commit is contained in:
parent
b0df646369
commit
8299f4dbd0
6
init.lua
6
init.lua
|
@ -794,10 +794,9 @@ require('lazy').setup({
|
|||
-- Load the colorscheme here.
|
||||
-- Like many other themes, this one has different styles, and you could load
|
||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
||||
vim.cmd.colorscheme 'tokyonight-night'
|
||||
|
||||
-- vim.cmd.colorscheme 'tokyonight-night'
|
||||
-- You can configure highlights by doing something like:
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
-- vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
},
|
||||
|
||||
|
@ -843,6 +842,7 @@ require('lazy').setup({
|
|||
},
|
||||
{ -- Highlight, edit, and navigate code
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
dependencies = { { 'nushell/tree-sitter-nu' } },
|
||||
build = ':TSUpdate',
|
||||
opts = {
|
||||
ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc', 'typescript', 'javascript', 'tsx', 'json' },
|
||||
|
|
|
@ -4,8 +4,8 @@ return {
|
|||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
-- vim.cmd.colorscheme 'catppuccin-mocha'
|
||||
-- vim.cmd.hi 'Comment gui=none'
|
||||
vim.cmd.colorscheme 'catppuccin-mocha'
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue