From d24da65777b3cc3ca315edee5ab7610669966e6b Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Fri, 15 Sep 2023 10:48:40 +0200 Subject: Updates --- bash/.bashrc | 2 +- iterm2/.iterm2/com.googlecode.iterm2.plist | 10 ++++++++++ vim/.vim/vimrc | 8 ++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index c17a655..aeeb06e 100755 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -7,7 +7,7 @@ export PS1='[\d][\t]\u on \h\n\w $ ' # Additional local paths -export PATH="$PATH:/opt/homebrew/bin" +export PATH="/opt/homebrew/bin:$PATH" export PATH="$PATH:$HOME/.cargo/bin" export PATH="$PATH:$HOME/.local/bin" export PATH="$PATH:$HOME/.local/usr/bin" diff --git a/iterm2/.iterm2/com.googlecode.iterm2.plist b/iterm2/.iterm2/com.googlecode.iterm2.plist index cc8732a..fb1a61a 100644 --- a/iterm2/.iterm2/com.googlecode.iterm2.plist +++ b/iterm2/.iterm2/com.googlecode.iterm2.plist @@ -261,6 +261,8 @@ No Custom Directory No + Custom Locale + en_US.UTF-8 Default Bookmark No Description @@ -633,6 +635,8 @@ Send Code When Idle + Set Local Environment Vars + 2 Shortcut Show Status Bar @@ -1134,6 +1138,8 @@ No Custom Directory No + Custom Locale + en_US.UTF-8 Default Bookmark No Description @@ -1534,6 +1540,8 @@ Send Code When Idle + Set Local Environment Vars + 2 Shortcut Show Status Bar @@ -1867,6 +1875,8 @@ SeparateStatusBarsPerPane + ShowFullScreenTabBar + ShowPaneTitles SoundForEsc diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index 3e4076f..085e2e7 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -17,6 +17,14 @@ if executable('ansible') Plug 'chase/vim-ansible-yaml' endif +if executable('terraform') + Plug 'hashivim/vim-terraform' +endif + +if executable('python') || executable('python3') + Plug 'davidhalter/jedi-vim' +endif + if has('python') || has('python3') let g:ycm_install_command = './install.py --clang-completer' -- cgit v1.2.3