virtual machine and neovim changes

This commit is contained in:
ISnortPennies 2022-08-21 00:55:52 -04:00
parent 113fdfac68
commit fc39de700a
7 changed files with 238 additions and 230 deletions

View file

@ -7,10 +7,6 @@
withNodeJs = true;
withPython3 = true;
withRuby = true;
coc = {
enable = true;
package = pkgs.vimPlugins.coc-nvim;
};
plugins = with pkgs.vimPlugins; [
vim-smoothie #smooth scrolling
tokyonight-nvim #color scheme
@ -20,8 +16,10 @@
nvim-web-devicons # for tree-lua
# telescope-nvim # file finder
indentLine # indentlines
nvim-treesitter #syntax highlighting
(nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars)) #syntax highlighting
coq_nvim # autocompletions
];
extraConfig = "lua << EOF\n" + builtins.readFile ./init.lua + "\nEOF";
};
}