1
Fork 0

Configured anyrun

This commit is contained in:
Matei Adriel 2023-08-19 22:13:34 +03:00
commit c86e6c6d5e
No known key found for this signature in database
9 changed files with 209 additions and 53 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -33,7 +33,7 @@ local M = {
"vim",
"yaml",
"nix",
"lua"
"lua",
},
sync_install = false,
--}}}
@ -91,6 +91,13 @@ local M = {
event = "BufReadPost",
cond = env.vscode.not_active(),
},
{
-- show context at top of file
"nvim-treesitter/nvim-treesitter-context",
event = "BufReadPost",
cond = env.vscode.not_active(),
opts = { enable = true },
},
}
return M