diff --git a/apps/neovim/init.vim b/apps/neovim/init.vim index 0538dff..efc80a6 100644 --- a/apps/neovim/init.vim +++ b/apps/neovim/init.vim @@ -121,12 +121,11 @@ let g:deoplete#enable_at_startup = 1 Plug 'scrooloose/syntastic' " syntax checker Plug 'bkad/CamelCaseMotion' " camel case and underscore word movements -Plug 'LargeFile' " gracefully handle very large files +Plug 'vim-scripts/LargeFile' " gracefully handle very large files Plug 'tpope/vim-commentary' " toggle comments in code easily Plug 'tpope/vim-repeat' " toggle comments in code easily Plug 'tmux-plugins/vim-tmux-focus-events' " allow transitions within tmux Plug 'christoomey/vim-tmux-navigator' " allow transitions within tmux -Plug 'tasklist.vim' " show tasks with leader,t Plug 'godlygeek/tabular' " align text lines together Plug 'dhruvasagar/vim-table-mode' " for creating and editing character tables Plug 'lytedev/vim-superman' " view man pages with vim diff --git a/de/bspwm_config b/de/bspwm_config index 7074fe4..8b2b875 100755 --- a/de/bspwm_config +++ b/de/bspwm_config @@ -14,12 +14,6 @@ if [ -f "$HOME/.env_bspwm" ]; then source "$HOME/.env_bspwm" fi -# old colors -# bspc config normal_border_color "#$(get_color 05)" -# bspc config focused_border_color "#$(get_color 0D)" -# bspc config active_border_color "#$(get_color 0D)" -# bspc config presel_feedback_color "#$(get_color 0D)" - bspc config normal_border_color "$(xrdb -query | sed -ne 's/.*background:\s*//p')" bspc config focused_border_color "$(xrdb -query | sed -ne 's/.*color0\?4:\s*//p')" bspc config active_border_color "$(xrdb -query | sed -ne 's/.*color0\?4:\s*//p')" diff --git a/readme.md b/readme.md index a80c718..f0c90ac 100644 --- a/readme.md +++ b/readme.md @@ -83,3 +83,7 @@ Here are some bullet points on my workflow as a Web Developer: * urxvt fontawesome * Alacritty as terminal? * Cloud IRC +* XDG Directories (see [here][xdg-user-dirs]) + + +[xdg-user-dirs]: https://wiki.archlinux.org/index.php/XDG_user_directories diff --git a/shell/aliases b/shell/aliases index 777dcd8..57cb77c 100644 --- a/shell/aliases +++ b/shell/aliases @@ -46,6 +46,7 @@ alias tmls="tmux list-sessions" alias tmatt="tmux attach -t" alias tu="tmux attach -t utils || tmux new -s utils" alias tdf="tmux attach -t df || tmux new -s df -c \"$DOTFILES_PATH\"" +alias tmon="tmux attach -t mon || tmux new -s mon" # git aliases alias gs="git status"