2019-05-30-17:20:31
This commit is contained in:
@@ -20,7 +20,7 @@ URxvt.saveLines: 5000
|
|||||||
!URxvt.letterSpace: -1
|
!URxvt.letterSpace: -1
|
||||||
|
|
||||||
!Inconsolata
|
!Inconsolata
|
||||||
URxvt.font: xft:Inconsolata:style=Regular:size=11
|
URxvt.font: xft:Inconsolata:style=Regular:size=13
|
||||||
URxvt.boldFont: xft:Inconsolata:style=Bold:size=11
|
URxvt.boldFont: xft:Inconsolata:style=Bold:size=13
|
||||||
URxvt.letterSpace: -1
|
URxvt.letterSpace: -1
|
||||||
|
|
||||||
|
|||||||
7
.bashrc
7
.bashrc
@@ -34,9 +34,14 @@ BASE16_SHELL="$HOME/.config/base16-shell/"
|
|||||||
|
|
||||||
#add private usr bin to path if exists
|
#add private usr bin to path if exists
|
||||||
if [ -d "$HOME/bin" ] ; then
|
if [ -d "$HOME/bin" ] ; then
|
||||||
PATH="$HOME/bin:$PATH"
|
export PATH="$HOME/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
#fast fuzzy file searching with fzf and ripgrep if installed
|
#fast fuzzy file searching with fzf and ripgrep if installed
|
||||||
#fzf kbd shortcuts: <alt-c>, <ctrl-t>, <ctrl-p>
|
#fzf kbd shortcuts: <alt-c>, <ctrl-t>, <ctrl-p>
|
||||||
source /usr/share/fzf/key-bindings.bash
|
source /usr/share/fzf/key-bindings.bash
|
||||||
|
|||||||
7
.vimrc
7
.vimrc
@@ -6,6 +6,9 @@ source ~/.config/nvim/defaults.vim
|
|||||||
"ln -s ~/.vimrc ~/.config/nvim/init.vim
|
"ln -s ~/.vimrc ~/.config/nvim/init.vim
|
||||||
"set rtp^=/usr/share/vim/vimfiles/
|
"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.
|
" Only do this part when compiled with support for autocommands.
|
||||||
if has("autocmd")
|
if has("autocmd")
|
||||||
|
|
||||||
@@ -14,7 +17,7 @@ if has("autocmd")
|
|||||||
au!
|
au!
|
||||||
|
|
||||||
" For all text files set 'textwidth' to 78 characters.
|
" For all text files set 'textwidth' to 78 characters.
|
||||||
autocmd FileType text setlocal textwidth=78
|
autocmd FileType text setlocal textwidth=0
|
||||||
|
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
@@ -248,7 +251,7 @@ if has("gui_running")
|
|||||||
" Switch on highlighting the last used search pattern.
|
" Switch on highlighting the last used search pattern.
|
||||||
set hlsearch
|
set hlsearch
|
||||||
" Set font
|
" Set font
|
||||||
set gfn=Inconsolata\ 13
|
set gfn=Inconsolata\ 15
|
||||||
" Can toggle gui toolbar with `T` and menu with `m` in guioptions:
|
" Can toggle gui toolbar with `T` and menu with `m` in guioptions:
|
||||||
" default is go=aegimrLtT
|
" default is go=aegimrLtT
|
||||||
set go=aegLt
|
set go=aegLt
|
||||||
|
|||||||
Reference in New Issue
Block a user