We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa071f7 commit 1b843f2Copy full SHA for 1b843f2
.readable.vimrc
@@ -42,13 +42,21 @@ endif
42
43
call plug#begin('~/.vim/plugged')
44
Plug 'junegunn/fzf'
45
+ Plug 'ziglang/zig.vim'
46
Plug 'tpope/vim-surround'
47
Plug 'tpope/vim-eunuch' " useful for :Rename, :Move
48
Plug 'scrooloose/nerdcommenter'
49
Plug 'ntpeters/vim-better-whitespace'
50
Plug 'flazz/vim-colorschemes'
51
Plug 'sheerun/vim-polyglot'
52
" Plug 'mhinz/vim-grepper'
53
+ " something for neovim
54
+ if has('nvim')
55
+ Plug 'neovim/nvim-lspconfig'
56
+ " https://github.com/neoclide/coc.nvim
57
+ " Plug 'neoclide/coc.nvim', {'branch': 'release'}
58
+ set signcolumn=number
59
+ endif
60
call plug#end()
61
62
colorscheme wombat256mod
0 commit comments