{ config, pkgs, lib, home, ... }: { home.packages = with pkgs; [ nixfmt jetbrains.idea-ultimate jetbrains.jdk vscode ]; programs.neovim = { enable = true; extraConfig = '' " syntax syntax enable " color themes set termguicolors colorscheme molokai " wildcard mode set wildmode=longest:full,full " remapping popup menu (command autocompletion) cnoremap pumvisible() ? "" : " cnoremap pumvisible() ? "" : "" cnoremap pumvisible()? "":"" " set line numbers set number " YouCompleteMe let g:ycm_key_list_stop_completion = ['', ''] let g:ycm_key_list_select_completion = ['', '', ''] ''; viAlias = true; vimAlias = true; plugins = with pkgs.vimPlugins; [ vim-nix molokai YouCompleteMe vim-airline vim-airline-themes vim-lsp vim-indent-guides vim-signify ]; }; }