.vim
This commit is contained in:
parent
d67bd511a8
commit
ada47a526f
7 changed files with 10 additions and 7 deletions
|
@ -12,9 +12,6 @@ PATH=$AE_HOME/scripts:$PATH
|
||||||
PATH=/opt/bin:$PATH
|
PATH=/opt/bin:$PATH
|
||||||
export PATH
|
export PATH
|
||||||
|
|
||||||
PYTHONPATH=$HOME/.python-modules:$PYTHONPATH
|
|
||||||
export PYTHONPATH
|
|
||||||
|
|
||||||
# If not running interactively, don't do anything else
|
# If not running interactively, don't do anything else
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ if !exists("g:my_environ_dir")
|
||||||
let g:my_environ_dir = expand('~/.alex-environ')
|
let g:my_environ_dir = expand('~/.alex-environ')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
exe "source " . g:my_environ_dir . "/home/.vimrc.d/base"
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/base.vim"
|
||||||
exe "source " . g:my_environ_dir . "/home/.vimrc.d/filetypes"
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/filetypes.vim"
|
||||||
|
|
||||||
exe "source " . g:my_environ_dir . "/home/.vimrc.d/plugins"
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/plugins.vim"
|
||||||
exe "source " . g:my_environ_dir . "/home/.vimrc.d/dev-environ"
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/dev-environ.vim"
|
||||||
|
|
|
@ -1,10 +1,16 @@
|
||||||
{
|
{
|
||||||
"python.linting.enabled": false,
|
"python.linting.enabled": false,
|
||||||
|
"python.jediEnabled": false,
|
||||||
|
|
||||||
"rust-client.disableRustup": true,
|
"rust-client.disableRustup": true,
|
||||||
|
|
||||||
"javascript.format.enabled": false,
|
"javascript.format.enabled": false,
|
||||||
"javascript.validate.enable": false,
|
"javascript.validate.enable": false,
|
||||||
|
|
||||||
"typescript.format.enabled": false,
|
"typescript.format.enabled": false,
|
||||||
"typescript.validate.enable": false,
|
"typescript.validate.enable": false,
|
||||||
|
|
||||||
"json.format.enable": false,
|
"json.format.enable": false,
|
||||||
|
|
||||||
"diagnostic.displayByAle": true
|
"diagnostic.displayByAle": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue