Add support for Python & Fortran
This commit is contained in:
+5
-1
@@ -103,6 +103,9 @@ nmap =, :Tabularize /[^,]*:<CR>
|
||||
" nathanaelkane/vim-indent-guides
|
||||
let g:indent_guides_enable_on_vim_startup = 0
|
||||
|
||||
" scrooloose/nerdtree
|
||||
let NERDTreeIgnore = ['__pycache__', '\.pyc$']
|
||||
|
||||
" w0rp/ale
|
||||
let g:airline#extensions#ale#enabled = 1
|
||||
let g:ale_completion_delay = 500
|
||||
@@ -113,7 +116,8 @@ let g:ale_set_loclist = 0
|
||||
let g:ale_sign_column_always = 1
|
||||
|
||||
let g:ale_linters = {
|
||||
\'typescript': ['tslint', 'tsserver']
|
||||
\'typescript': ['tslint', 'tsserver'],
|
||||
\'python': ['pyls']
|
||||
\}
|
||||
|
||||
" Key Mappings #########################################################################################################
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
/src/init-env/bin
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
git branch | grep -v master | grep -v '\*' | while read BRANCH; do git branch -d $BRANCH -q; done
|
||||
+1
-3
@@ -15,8 +15,6 @@ fi
|
||||
pushd $HOME >/dev/null
|
||||
echo "Installing standard config files..."
|
||||
|
||||
ln -sf "$CONFIG_DIR/bin" bin
|
||||
|
||||
for FILE in $(ls -A "$CONFIG_DIR/home"); do
|
||||
[[ -e "$FILE" ]] && rm -rf "$FILE"
|
||||
ln -sf "$CONFIG_DIR/home/$FILE" "$FILE"
|
||||
@@ -30,6 +28,7 @@ echo "Installing standard brew packages..."
|
||||
which -s ag || brew install ag
|
||||
which -s ctags || brew install ctags
|
||||
which -s fswatch || brew install fswatch
|
||||
which -s gcc || brew install gcc
|
||||
which -s python || brew install python # must preceed macvim
|
||||
which -s gvim || brew install macvim
|
||||
which -s node || brew install node
|
||||
@@ -56,7 +55,6 @@ which -s ts-node || npm install -g ts-node
|
||||
which -s tsserver || npm install -g typescript
|
||||
|
||||
echo "Installing standard Python packages..."
|
||||
which -s pylint || pip install pylint
|
||||
pip list --format=legacy | grep jedi >/dev/null || pip install jedi
|
||||
|
||||
echo "Installing vi plugins..."
|
||||
|
||||
Reference in New Issue
Block a user