diff --git a/.Xresources b/.Xresources index 7292507..cacc1a7 100644 --- a/.Xresources +++ b/.Xresources @@ -20,7 +20,7 @@ URxvt.saveLines: 5000 !URxvt.letterSpace: -1 !Inconsolata -URxvt.font: xft:Inconsolata:style=Regular:size=11 -URxvt.boldFont: xft:Inconsolata:style=Bold:size=11 +URxvt.font: xft:Inconsolata:style=Regular:size=13 +URxvt.boldFont: xft:Inconsolata:style=Bold:size=13 URxvt.letterSpace: -1 diff --git a/.bashrc b/.bashrc index c86d759..663d40c 100644 --- a/.bashrc +++ b/.bashrc @@ -34,9 +34,14 @@ BASE16_SHELL="$HOME/.config/base16-shell/" #add private usr bin to path if exists if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" + export PATH="$HOME/bin:$PATH" fi +if [ -d "$HOME/.local/bin" ] ; then + export PATH="$HOME/.local/bin:$PATH" +fi + + #fast fuzzy file searching with fzf and ripgrep if installed #fzf kbd shortcuts: , , source /usr/share/fzf/key-bindings.bash diff --git a/.vimrc b/.vimrc index 7184975..ab55b27 100644 --- a/.vimrc +++ b/.vimrc @@ -6,6 +6,9 @@ source ~/.config/nvim/defaults.vim "ln -s ~/.vimrc ~/.config/nvim/init.vim "set rtp^=/usr/share/vim/vimfiles/ +" change textwidth for mutt mail program text +" au BufRead /tmp/mutt-* set tw=72 + " Only do this part when compiled with support for autocommands. if has("autocmd") @@ -14,7 +17,7 @@ if has("autocmd") au! " For all text files set 'textwidth' to 78 characters. - autocmd FileType text setlocal textwidth=78 + autocmd FileType text setlocal textwidth=0 augroup END @@ -248,7 +251,7 @@ if has("gui_running") " Switch on highlighting the last used search pattern. set hlsearch " Set font - set gfn=Inconsolata\ 13 + set gfn=Inconsolata\ 15 " Can toggle gui toolbar with `T` and menu with `m` in guioptions: " default is go=aegimrLtT set go=aegLt