Add vim-lsc
- Added vim-lsc to .vimrc - Fix issue with loading .bashrc sources
This commit is contained in:
parent
e1fdca2a9c
commit
f2b5ca9af1
2 changed files with 8 additions and 2 deletions
4
.bashrc
4
.bashrc
|
@ -136,8 +136,8 @@ ex ()
|
|||
fi
|
||||
}
|
||||
# --- my modifications ---
|
||||
source .bash/aliases
|
||||
source .bash/funcs
|
||||
source "$HOME/.bash/aliases"
|
||||
source "$HOME/.bash/funcs"
|
||||
|
||||
if [ -f "$HOME/bw_key" ] ; then
|
||||
source $HOME/bw_key
|
||||
|
|
6
.vimrc
6
.vimrc
|
@ -42,6 +42,11 @@ set number
|
|||
"NERDTree shortcuts
|
||||
nnoremap <C-t> :NERDTreeToggle<CR>
|
||||
|
||||
"Language server junk
|
||||
let g:lsc_server_commands = {'py': 'pyls'}
|
||||
|
||||
let g:lsc_auto_map = v:true
|
||||
|
||||
"plugins
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
|
@ -49,5 +54,6 @@ Plug 'airblade/vim-gitgutter'
|
|||
Plug 'preservim/nerdtree'
|
||||
Plug 'ycm-core/YouCompleteMe'
|
||||
Plug 'chiel92/vim-autoformat'
|
||||
Plug 'natebosch/vim-lsc'
|
||||
|
||||
call plug#end()
|
||||
|
|
Loading…
Reference in a new issue