Ayo the pizza here (restructuring)
This commit is contained in:
38
modules/nvim/default.nix
Normal file
38
modules/nvim/default.nix
Normal file
@@ -0,0 +1,38 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
package = pkgs.neovim-unwrapped.overrideAttrs (_:{
|
||||
nativeBuildInputs = with pkgs.unstable; [ unzip cmake pkgconfig gettext tree-sitter ];
|
||||
});
|
||||
defaultEditor = true;
|
||||
configure = {
|
||||
customRC = ''
|
||||
lua << EOF
|
||||
${builtins.readFile ./init.lua}
|
||||
EOF
|
||||
'';
|
||||
packages.myVimPackage = with pkgs.unstable.vimPlugins; {
|
||||
start = [
|
||||
nvim-colorizer-lua
|
||||
auto-pairs
|
||||
vim-floaterm
|
||||
vim-closetag
|
||||
vim-floaterm
|
||||
nerdcommenter
|
||||
nvim-compe
|
||||
nvim-lspconfig
|
||||
barbar-nvim
|
||||
presence-nvim
|
||||
nvim-web-devicons
|
||||
nvim-tree-lua
|
||||
vim-vsnip
|
||||
nvim-treesitter
|
||||
vim-nix
|
||||
(gruvbox.overrideAttrs (oa: { patches = [ ./gruvbox.patch ]; }))
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user