fix: nushell

This commit is contained in:
Abhinav Robinson 2024-06-17 11:07:31 +05:30
parent b0df646369
commit 8299f4dbd0
2 changed files with 5 additions and 5 deletions

View File

@ -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' },

View File

@ -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,
},
{