Created
September 20, 2018 16:27
-
-
Save wbthomason/2cf3f8dec63d183ce742bb1813f06523 to your computer and use it in GitHub Desktop.
Minimum vimrc for LCN issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.local/share/nvim/plugs') | |
Plug 'autozimu/LanguageClient-neovim', { | |
\ 'branch': 'next', | |
\ 'do': 'bash install.sh', | |
\ } | |
call plug#end() | |
" Always draw sign column. Prevent buffer moving when adding/deleting sign. | |
set signcolumn=yes | |
let g:LanguageClient_serverCommands = { | |
\ 'python': ['pyls'], | |
\ 'cpp': ['ccls', '--log-file=/tmp/cc.log'], | |
\ } | |
let $RUST_BACKTRACE = 1 | |
let g:LanguageClient_loggingLevel = 'INFO' | |
let g:LanguageClient_loggingFile = stdpath('data') . '/LanguageClient.log' | |
let g:LanguageClient_serverStderr = stdpath('data') . '/LanguageServer.log' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment