2019-05-30-17:20:31

This commit is contained in:
ackman678
2019-05-30 17:20:31 -07:00
parent 2f5d88cae4
commit 8b8919aa89
3 changed files with 13 additions and 5 deletions

View File

@@ -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

View File

@@ -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: <alt-c>, <ctrl-t>, <ctrl-p>
source /usr/share/fzf/key-bindings.bash

7
.vimrc
View File

@@ -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