Update Bash & Vim

This commit is contained in:
Evan Reichard 2021-01-26 18:19:17 -05:00
parent efa1f63121
commit 9ff73fe841
2 changed files with 11 additions and 2 deletions

View File

@ -43,7 +43,9 @@ function csv2mdt(){
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# ---------------------------------- EXPORTS ----------------------------------- # ---------------------------------- EXPORTS -----------------------------------
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
export PATH=$HOME/.local/bin:$PATH export PATH=$HOME/.local/bin:$HOME/.yarn/bin:$HOME/Development/Tools/flutter/bin:$PATH
export GOPATH=$HOME/go
export KUBE_EDITOR="/Applications/MacVim.app/Contents/bin/mvim -v" export KUBE_EDITOR="/Applications/MacVim.app/Contents/bin/mvim -v"
export NIX_PYTHONPATH=$(python3 -c "import sys; print(sys.base_prefix)") export NIX_PYTHONPATH=$(python3 -c "import sys; print(sys.base_prefix)")
@ -53,7 +55,7 @@ export NIX_PYTHONPATH=$(python3 -c "import sys; print(sys.base_prefix)")
powerline-daemon -q powerline-daemon -q
POWERLINE_BASH_CONTINUATION=1 POWERLINE_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1 POWERLINE_BASH_SELECT=1
. $HOME/.local/lib/python2.7/site-packages/powerline/bindings/bash/powerline.sh . $HOME/.local/lib/python3.9/site-packages/powerline/bindings/bash/powerline.sh
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# ------------------------------ TMUX & NEOFETCH ------------------------------- # ------------------------------ TMUX & NEOFETCH -------------------------------

7
.vimrc
View File

@ -15,8 +15,15 @@ Plugin 'chrisbra/csv.vim'
Plugin 'dracula/vim' Plugin 'dracula/vim'
Bundle 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'} Bundle 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'psf/black' Plugin 'psf/black'
Plugin 'dart-lang/dart-vim-plugin'
Plugin 'natebosch/vim-lsc'
Plugin 'natebosch/vim-lsc-dart'
call vundle#end() call vundle#end()
" Set Dart SDK
let g:ycm_dart_bin_folder_path = '/Users/evanreichard/Development/Tools/flutter/bin/cache/dart-sdk/bin'
let g:lsc_auto_map = v:true
" filetype off " filetype off
filetype plugin indent on filetype plugin indent on