Did config
This commit is contained in:
parent
3525e5f89f
commit
1fed946419
5 changed files with 56 additions and 14 deletions
22
home-manager/neovim.nix
Normal file
22
home-manager/neovim.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
vimAlias = true;
|
||||
|
||||
extraConfig = ''
|
||||
set number relativenumber
|
||||
|
||||
'';
|
||||
|
||||
plugins = [
|
||||
{ plugin = pkgs.vimPlugins.vim-numbertoggle; }
|
||||
{ plugin = pkgs.vimPlugins.vim-sleuth; }
|
||||
{ plugin = pkgs.vimPlugins.lualine-nvim; }
|
||||
{ plugin = pkgs.vimPlugins.neoscroll-nvim; }
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue