Try out the ligature vim plugin.

This commit is contained in:
Danila Fedorin 2019-07-07 14:52:17 -07:00
parent 65a870fe98
commit 6541f6bb4b
1 changed files with 4 additions and 3 deletions

View File

@ -4,6 +4,7 @@ Plug 'ncm2/ncm2'
Plug 'autozimu/LanguageClient-neovim', {'branch': 'next', 'do': 'bash install.sh' }
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' }
Plug 'junegunn/fzf.vim'
Plug 'enomsg/vim-haskellConcealPlus'
Plug 'lervag/vimtex'
Plug 'rhysd/vim-crystal'
@ -30,11 +31,11 @@ autocmd FileType crystal setlocal shiftwidth=2 " Crystal likes 2-wide indent
set completeopt=noinsert,menuone
let g:LanguageClient_serverCommands = {
\ 'haskell': ['hie', '--lsp'],
\ 'haskell': ['hie-wrapper', '--lsp'],
\ 'rust': ['rustup', 'run', 'stable', 'rls'],
\ 'c': ['clangd'],
\ 'c': ['cquery'],
\ 'crystal': ['scry'],
\ 'cpp': ['clangd'],
\ 'cpp': ['cquery'],
\ 'javascript': ['javascript-typescript-stdio'],
\ 'elm': ['elm-language-server', '--stdio']
\ }