home: vim: add 'null-ls'

This commit is contained in:
Bruno BELANYI 2022-02-25 11:48:26 +01:00
parent d9a2c12d3f
commit 367dc1e5a5
2 changed files with 6 additions and 0 deletions

View file

@ -64,6 +64,8 @@ in
# LSP and linting
lightline-lsp
null-ls-nvim # LSP integration for linters and formatters
plenary-nvim # 'null-ls' dependency
];
extraConfig = builtins.readFile ./init.vim;

View file

@ -0,0 +1,4 @@
lua << EOF
null_ls = require("null-ls")
null_ls.setup()
EOF