This commit is contained in:
Yaser Alraddadi 2025-02-05 18:57:54 +03:00
parent d975f7da8c
commit 1be8014415
No known key found for this signature in database
GPG Key ID: 808212144E6DBE90
2 changed files with 20 additions and 7 deletions

View File

@ -1094,6 +1094,8 @@ require('lazy').setup({
'typescript', 'typescript',
'javascript', 'javascript',
-- 'ts_ls', -- 'ts_ls',
'nu',
-- 'nix',
'css', 'css',
'json', 'json',
'comment', 'comment',
@ -1104,6 +1106,11 @@ require('lazy').setup({
'toml', 'toml',
'yaml', 'yaml',
}, },
dependencies = {
-- Install official queries and filetype detection
-- alternatively, see section "Install official queries only"
{ 'nushell/tree-sitter-nu' },
},
-- Autoinstall languages that are not installed -- Autoinstall languages that are not installed
auto_install = true, auto_install = true,
highlight = { highlight = {
@ -1122,13 +1129,6 @@ require('lazy').setup({
-- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context -- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
-- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
}, },
-- 'nu',
-- },
-- dependencies = {
-- -- Install official queries and filetype detection
-- -- alternatively, see section "Install official queries only"
-- { 'nushell/tree-sitter-nu' },
-- },
-- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
-- init.lua. If you want these files, they are in the repository, so you can just download them and -- init.lua. If you want these files, they are in the repository, so you can just download them and

View File

@ -0,0 +1,13 @@
return {
{
'stevearc/aerial.nvim',
opts = {
-- open_automatic = true,
},
-- Optional dependencies
dependencies = {
'nvim-treesitter/nvim-treesitter',
'nvim-tree/nvim-web-devicons',
},
},
}