summary refs log tree commit diff
path: root/configs/plugins.vimrc
blob: 92d499d999ba154e6ebcb6743615d13f02ea723d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" VIM PLUGIN SETTINGS

" YOUCOMPLETEME:

let g:ycm_extra_conf_globlist = ['/nix/store/*']
let g:ycm_global_ycm_extra_conf = '@ycm_extra_conf@'

let g:ycm_language_server =
  \ [
  \   {
  \     'name': 'nix',
  \     'cmdline': [ '/run/current-system/sw/bin/nil', '--stdio' ],
  \     'filetypes': [ 'nix' ]
  \   }
  \ ]