Tweak vim config

This commit is contained in:
Lauren Lagarde 2025-08-10 19:37:49 -05:00
parent 2cb3adf77b
commit da88d64ebe

View file

@ -2,11 +2,18 @@
programs.vim = {
enable = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
rainbow
vim-airline vim-airline-themes vim-fugitive
nerdtree nerdtree-git-plugin
vim-signify vim-openscad vim-javascript vim-jsx-pretty
];
# Reasonable themes:
# - jellybeans
# - term
# - distinguished
# - raven
extraConfig = ''
" Assorted BS
set nocompatible
@ -43,6 +50,8 @@
" Stop mousing
set mouse-=a
let g:airline_theme='jellybeans'
'';
};
}