{ pkgs, lib, ... }: { programs.vim = { enable = true; plugins = with pkgs.vimPlugins; [ vim-nix vim-lastplace vim-sensible vim-commentary vim-surround vim-fugitive auto-pairs fzf-vim catppuccin-vim ]; settings = { ignorecase = true; }; extraConfig = '' nnoremap f :Files nnoremap w :w nnoremap q :q nnoremap o :RG nnoremap :bnext nnoremap :bprev set cmdheight=1 set relativenumber set wrap set shiftwidth=4 set tabstop=4 set termguicolors colorscheme catppuccin_mocha ''; }; }