Add support for Python & Fortran

This commit is contained in:
Andrew Miner
2018-01-19 13:33:12 -07:00
parent d16bdc782e
commit 7f5f224475
5 changed files with 13 additions and 5 deletions
+5 -1
View File
@@ -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
View File
@@ -1 +0,0 @@
/src/init-env/bin
+3
View File
@@ -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
View File
@@ -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..."
+4
View File
@@ -0,0 +1,4 @@
# Allowed options are: exclude, filename, select, ignore, max-line-length, hang-closing, count, format, quiet, show-pep8,
# show-source, statistics, verbose
: