Add .local/bin to $PATH
dblume

dblume commited on 2023-01-07 22:48:36
Showing 2 changed files, with 5 additions and 1 deletions.

... ...
@@ -112,8 +112,11 @@ alias tmux='tmux -2u'
112 112
 # colored GCC warnings and errors
113 113
 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
114 114
 
115
-# Add to PATH only if not already in PATH. .cargo/bin for rustc
115
+# Add to PATH only if not already in PATH.
116 116
 append_to_path $HOME/bin
117
+# .local/bin for VisiData
118
+append_to_path $HOME/.local/bin
119
+# .cargo/bin for rustc
117 120
 append_to_path $HOME/.cargo/bin
118 121
 
119 122
 # For interactive shells ('i' in $-), disable stty flow control (ctrl+s,ctrl+q)
... ...
@@ -259,6 +259,7 @@ if has("autocmd")
259 259
 
260 260
   autocmd BufRead *.txt set wrap linebreak   " "soft" wrap of existing lines
261 261
   autocmd BufRead README set wrap linebreak  " "soft" wrap of existing lines
262
+  autocmd BufRead *.rs :setlocal tags=./rusty-tags.vi;/
262 263
 
263 264
   " When editing a file, always jump to the last cursor position
264 265
   autocmd BufReadPost *
265 266