nix-dotfiles/packages/vim.nix

39 lines
775 B
Nix

{ pkgs, ... }:
{
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
defaultEditor = true;
withPython3 = true;
withNodeJs = true;
configure = {
customRC = ''
" your custom vimrc
set nocompatible
set backspace=indent,eol,start
" Turn on syntax highlighting by default
syntax on
set tabstop=2 softtabstop=0 autoindent expandtab shiftwidth=2 smarttab
" ...
'';
packages.myplugins = with pkgs.vimPlugins; {
start = [
vim-nix
vim-lastplace
vim-yaml
#coc-rust-analyzer
#neovim-fuzzy
#LanguageClient-neovim
#copilot-vim
#chadtree
];
opt = [
#copilot-vim
];
};
};
};
}