Add Rupert’s configuration
This commit is contained in:
commit
2b4264d32d
31 changed files with 1742 additions and 0 deletions
28
base/neovim.nix
Normal file
28
base/neovim.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
vimAlias = true;
|
||||
viAlias = true;
|
||||
defaultEditor = true;
|
||||
configure = {
|
||||
customRC = (builtins.readFile ./neovim-init.vim);
|
||||
packages.myVimPackage = with pkgs.vimPlugins; {
|
||||
start = [
|
||||
vim-lastplace
|
||||
direnv-vim
|
||||
vim-addon-local-vimrc
|
||||
vim-nix
|
||||
vim-airline
|
||||
vim-airline-themes
|
||||
vim-colorschemes
|
||||
changeColorScheme-vim
|
||||
vim-dispatch
|
||||
vimtex
|
||||
suda-vim
|
||||
];
|
||||
opt = [];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue