all repos — nixfiles @ dd829bbad56e53a35d86e8e43165a92268339929

System and user configuration, managed by nix and home-manager

neovim: configure smart completion
Alan Pearce alan@alanpearce.eu
Thu, 29 Oct 2020 20:15:18 +0100
commit

dd829bbad56e53a35d86e8e43165a92268339929

parent

be7dd55d729eaf4c001790430bafe2b6115328c2

3 files changed, 44 insertions(+), 11 deletions(-)

jump to
A user/nvim/coc-settings.json
@@ -0,0 +1,5 @@+{
+	"json.enable": true,
+	"suggest.enablePreview": true
+}
+
A user/nvim/init.vim
@@ -0,0 +1,25 @@+set autoindent
+
+set background=light
+set shiftwidth=2
+set tabstop=2
+set noexpandtab
+set relativenumber
+set smartcase
+
+" use <tab> for trigger completion and navigate to the next complete item
+function! s:check_back_space() abort
+  let col = col('.') - 1
+  return !col || getline('.')[col - 1]  =~ '\s'
+endfunction
+
+inoremap <silent><expr> <Tab>
+      \ pumvisible() ? "\<C-n>" :
+      \ <SID>check_back_space() ? "\<Tab>" :
+      \ coc#refresh()
+
+inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
+inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
+
+" use <c-space> to trigger completion
+inoremap <silent><expr> <c-space> coc#refresh()
M user/settings/base.nixuser/settings/base.nix
@@ -9,20 +9,22 @@ };   programs.neovim = {
     enable = true;
     vimAlias = true;
+    vimdiffAlias = true;
+    package = pkgs.unstable.neovim-unwrapped;
     configure = {
-      customRC = ''
-        set autoindent
-
-        set background=light
-        set shiftwidth=2
-        set tabstop=2
-        set noexpandtab
-        set relativenumber
-        set smartcase
-      '';
-      packages.myVimPackage = with pkgs.vimPlugins; {
+      customRC = builtins.readFile ../nvim/init.vim;
+      packages.myVimPackage = with pkgs.unstable.vimPlugins; {
         start = [
           commentary
+          coc-css
+          coc-eslint
+          coc-git
+          coc-html
+          coc-json
+          coc-nvim
+          coc-prettier
+          coc-tabnine
+          coc-yaml
           vim-surround
           vim-nix
         ];
@@ -30,6 +32,7 @@ opt = [ ];       };
     };
   };
+  xdg.configFile."nvim/coc-settings.json".source = ../nvim/coc-settings.json;
   home.sessionVariables = {
     EMAIL = "alan@alanpearce.eu";
     XDG_CACHE_HOME = if pkgs.stdenv.isDarwin then "$HOME/Library/Caches/XDG" else "$HOME/.cache";