diff options
| author | Baitinq <[email protected]> | 2022-06-17 20:56:30 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-17 20:56:30 +0200 |
| commit | c5ac39040a8309a0abe966b87011d6b1e8553447 (patch) | |
| tree | b73d696e9b99f6c508c84435e98cd47a72527419 /overlays | |
| parent | Initial commit (diff) | |
| download | nixos-config-c5ac39040a8309a0abe966b87011d6b1e8553447.tar.gz nixos-config-c5ac39040a8309a0abe966b87011d6b1e8553447.tar.bz2 nixos-config-c5ac39040a8309a0abe966b87011d6b1e8553447.zip | |
Refractor and move neovim to be a system pkg
Diffstat (limited to 'overlays')
| -rw-r--r-- | overlays/base.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/overlays/base.nix b/overlays/base.nix index 1ad82c6..8685995 100644 --- a/overlays/base.nix +++ b/overlays/base.nix @@ -25,4 +25,21 @@ final: prev: sha256 = "sha256-J5JwuQMdDU4Oy7let0IYA2rwOZD057LEE+sOmmGCkqc="; }; }); + + neovim = prev.neovim.override { + vimAlias = true; + configure = { + packages.myPlugins = with prev.vimPlugins; { + start = [ + vim-addon-nix + YouCompleteMe + nerdtree + rainbow_parentheses + base16-vim + vim-orgmode + ]; + opt = [ ]; + }; + }; + }; } |