aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbash/.bashrc2
-rw-r--r--iterm2/.iterm2/com.googlecode.iterm2.plist10
-rwxr-xr-xvim/.vim/vimrc8
3 files changed, 19 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index c17a655..aeeb06e 100755
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -7,7 +7,7 @@
7export PS1='[\d][\t]\u on \h\n\w $ ' 7export PS1='[\d][\t]\u on \h\n\w $ '
8 8
9# Additional local paths 9# Additional local paths
10export PATH="$PATH:/opt/homebrew/bin" 10export PATH="/opt/homebrew/bin:$PATH"
11export PATH="$PATH:$HOME/.cargo/bin" 11export PATH="$PATH:$HOME/.cargo/bin"
12export PATH="$PATH:$HOME/.local/bin" 12export PATH="$PATH:$HOME/.local/bin"
13export PATH="$PATH:$HOME/.local/usr/bin" 13export 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 @@
261 <string>No</string> 261 <string>No</string>
262 <key>Custom Directory</key> 262 <key>Custom Directory</key>
263 <string>No</string> 263 <string>No</string>
264 <key>Custom Locale</key>
265 <string>en_US.UTF-8</string>
264 <key>Default Bookmark</key> 266 <key>Default Bookmark</key>
265 <string>No</string> 267 <string>No</string>
266 <key>Description</key> 268 <key>Description</key>
@@ -633,6 +635,8 @@
633 </dict> 635 </dict>
634 <key>Send Code When Idle</key> 636 <key>Send Code When Idle</key>
635 <false/> 637 <false/>
638 <key>Set Local Environment Vars</key>
639 <integer>2</integer>
636 <key>Shortcut</key> 640 <key>Shortcut</key>
637 <string></string> 641 <string></string>
638 <key>Show Status Bar</key> 642 <key>Show Status Bar</key>
@@ -1134,6 +1138,8 @@
1134 <string>No</string> 1138 <string>No</string>
1135 <key>Custom Directory</key> 1139 <key>Custom Directory</key>
1136 <string>No</string> 1140 <string>No</string>
1141 <key>Custom Locale</key>
1142 <string>en_US.UTF-8</string>
1137 <key>Default Bookmark</key> 1143 <key>Default Bookmark</key>
1138 <string>No</string> 1144 <string>No</string>
1139 <key>Description</key> 1145 <key>Description</key>
@@ -1534,6 +1540,8 @@
1534 </dict> 1540 </dict>
1535 <key>Send Code When Idle</key> 1541 <key>Send Code When Idle</key>
1536 <false/> 1542 <false/>
1543 <key>Set Local Environment Vars</key>
1544 <integer>2</integer>
1537 <key>Shortcut</key> 1545 <key>Shortcut</key>
1538 <string></string> 1546 <string></string>
1539 <key>Show Status Bar</key> 1547 <key>Show Status Bar</key>
@@ -1867,6 +1875,8 @@
1867 </dict> 1875 </dict>
1868 <key>SeparateStatusBarsPerPane</key> 1876 <key>SeparateStatusBarsPerPane</key>
1869 <false/> 1877 <false/>
1878 <key>ShowFullScreenTabBar</key>
1879 <false/>
1870 <key>ShowPaneTitles</key> 1880 <key>ShowPaneTitles</key>
1871 <false/> 1881 <false/>
1872 <key>SoundForEsc</key> 1882 <key>SoundForEsc</key>
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')
17 Plug 'chase/vim-ansible-yaml' 17 Plug 'chase/vim-ansible-yaml'
18endif 18endif
19 19
20if executable('terraform')
21 Plug 'hashivim/vim-terraform'
22endif
23
24if executable('python') || executable('python3')
25 Plug 'davidhalter/jedi-vim'
26endif
27
20if has('python') || has('python3') 28if has('python') || has('python3')
21 let g:ycm_install_command = './install.py --clang-completer' 29 let g:ycm_install_command = './install.py --clang-completer'
22 30