mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
reworked nvim
This commit is contained in:
parent
6474455a8e
commit
c6aded3e64
14 changed files with 254 additions and 181 deletions
|
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, ...}:
|
||||
|
||||
with pkgs.vimPlugins;
|
||||
|
||||
[
|
||||
{ plugin = nvim-treesitter.withAllGrammars;
|
||||
config = ''
|
||||
lua << EOF
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
highlight = {
|
||||
enable = true,
|
||||
},
|
||||
}
|
||||
EOF
|
||||
'';
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue