You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
" ==> NERDTree
|
|
autocmd StdinReadPre * let s:std_in=1
|
|
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
|
|
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe 'cd '.argv()[0] | endif
|
|
autocmd BufEnter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
|
|
|
|
|
|
let g:mix_format_on_save = 1
|
|
let g:mix_format_silent_errors = 1
|
|
|
|
" ==> vim-go
|
|
let g:go_def_mode='gopls'
|
|
let g:go_info_mode='gopls'
|
|
let g:go_fmt_command = "goimports"
|
|
let g:go_metalinter_autosave = 1
|
|
let g:go_auto_type_info = 1
|
|
|
|
" ==> Python Mode
|
|
let g:pymode = 1
|
|
let g:pymode_warnings = 1
|
|
let g:pymode_virtualenv = 1
|
|
let g:pymode_trim_whitespaces = 1
|
|
let g:pymode_options = 1
|
|
let g:pymode_indent = 1
|
|
let g:pymode_doc = 1
|
|
let g:pymode_run = 1
|
|
let g:pymode_breakpoint = 1
|
|
let g:pymode_run_bind = '<leader>r'
|
|
let g:pymode_breakpoint_bind = '<leader>b'
|
|
let g:pymode_lint = 1
|
|
let g:pymode_lint_on_write = 1
|
|
let g:pymode_lint_on_fly = 0
|
|
let g:pymode_lint_message = 1
|
|
let g:pymode_rope_autoimport = 1
|
|
let g:pymode_rope_goto_definition_bind = '<C-c>g'
|
|
let g:pymode_rope_rename_bind = '<C-c>rr'
|
|
let g:pymode_rope_organize_imports_bind = '<C-c>ro'
|
|
let g:pymode_rope_use_function_bind = '<C-c>ru'
|
|
|
|
" ==> Airline
|
|
let g:airline_theme = 'wombat'
|
|
let g:airline#extensions#tabline#enabled = 1
|
|
|
|
" ==> Syntastic
|
|
set statusline+=%#warningmsg#
|
|
set statusline+=%{SyntasticStatuslineFlag()}
|
|
set statusline+=%*
|
|
|
|
let g:syntastic_always_populate_loc_list = 1
|
|
let g:syntastic_auto_loc_list = 1
|
|
let g:syntastic_check_on_open = 1
|
|
let g:syntastic_check_on_wq = 0
|
|
|
|
let g:syntastic_python_checkers = ['autopep8']
|
|
|
|
" pymode in virtualenv require pylint support
|
|
python3 << EOF
|
|
import os
|
|
import sys
|
|
from pip._internal.cli.main import main as pip_main
|
|
|
|
if 'VIRTUAL_ENV' in os.environ:
|
|
try:
|
|
import pylint
|
|
except ImportError:
|
|
pip_main(['install', 'pylint'])
|
|
EOF
|
|
|
|
|