Make path to libclang universal, update vimrc
Added Ale plugin for running linters + Changed unicode error and warning symbols + Added keybind for moving to next / previous errors Update vimrc to use environment variable /usr/lib/llvm-10/lib/libclang.so.1 for clang path + This is automatically adjusted to the system clang path via output of 'find / -name libclang.so.1' + Requires some derivative of libclang to be installed, along with clang Add whitespace check function to vimrc + Removes whitespaces from every relative file saved with vim + list of files found within ~/.vimrc Add Colorizer plugin keybind for toggling color highlights within vim Add environment variables $EDITOR and $VISUAL and set both to point to vim Add a script to fix a common issue in vbox displays + running fix-vbox.sh corrects unclickable portion of the screen
This commit is contained in:
@@ -15,6 +15,8 @@ alias l='ls -CF'
|
||||
# Add an "alert" alias for long running commands. Use like so:
|
||||
# sleep 10; alert
|
||||
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
||||
|
||||
export EDITOR="vim"
|
||||
export VISUAL="vim"
|
||||
export LS_COLORS="di=1;34:ln=31;47:so=32:pi=33:ex=1;32:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43"
|
||||
export LIBCLANG=$(sudo find / -name libclang.so.1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user