feat(neovim): add some plugins!
This commit is contained in:
parent
c99cc49b97
commit
22d3010e99
2 changed files with 38 additions and 9 deletions
|
@ -1,10 +1,19 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
(lua5_1.withPackages (ps: with ps; [luarocks]))
|
||||
];
|
||||
|
||||
hm.programs.neovim = {
|
||||
enable = true;
|
||||
extraLuaConfig = builtins.readFile ./init.lua;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
(lua5_1.withPackages (ps: with ps; [luarocks]))
|
||||
tree-sitter
|
||||
];
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
barbar-nvim
|
||||
catppuccin-nvim
|
||||
lualine-nvim
|
||||
nvim-treesitter.withAllGrammars
|
||||
nvim-web-devicons # for lualine
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue