Document plugins for vim and vscode
This commit is contained in:
parent
f7b367d7d9
commit
0c208c9166
2 changed files with 23 additions and 3 deletions
|
@ -1,7 +1,17 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
plugins = with pkgs.vimPlugins; [ vim-airline neoformat vim-monokai ];
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
|
||||
# Nice statusbar at the bottom
|
||||
vim-airline
|
||||
|
||||
# Autoformatter for 'all' languages
|
||||
neoformat
|
||||
|
||||
# Colorscheme
|
||||
vim-monokai
|
||||
];
|
||||
settings = { ignorecase = true; };
|
||||
extraConfig = ''
|
||||
set mouse=a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue