fix linting issue in nvim

This commit is contained in:
vincent 2021-05-26 11:53:50 +02:00
parent 7edc3b7eeb
commit ebf52bc634
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,5 @@
let g:python3_host_prog='/usr/bin/python3'
let g:python_host_prog='/usr/bin/python'
call plug#begin('~/.local/share/nvim/plugged') call plug#begin('~/.local/share/nvim/plugged')
Plug 'davidhalter/jedi-vim' Plug 'davidhalter/jedi-vim'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
@ -17,10 +18,10 @@ call plug#begin('~/.local/share/nvim/plugged')
Plug 'junegunn/fzf' Plug 'junegunn/fzf'
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
Plug 'dense-analysis/ale' Plug 'dense-analysis/ale'
Plug 'jmcantrell/vim-virtualenv'
call plug#end() call plug#end()
"Config Section "Config Section
set number set number
let g:deoplete#enable_at_startup = 1 let g:deoplete#enable_at_startup = 1
let g:airline_powerline_fonts = 1 let g:airline_powerline_fonts = 1
let mapleader = "\<Space>" let mapleader = "\<Space>"
@ -36,6 +37,7 @@ let g:ale_fixers = {
\ 'javascript': ['prettier'], \ 'javascript': ['prettier'],
\ 'markdown': ['prettier'], \ 'markdown': ['prettier'],
\ 'yaml': ['prettier'], \ 'yaml': ['prettier'],
\ 'python': ['black'],
\} \}
inoremap jk <esc> inoremap jk <esc>
inoremap kj <esc> inoremap kj <esc>

4
zsh/.zshenv Normal file
View File

@ -0,0 +1,4 @@
if [[ -n $VIRTUAL_ENV && -e "${VIRTUAL_ENV}/bin/activate" ]]; then
source "${VIRTUAL_ENV}/bin/activate"
fi