Added to .vimrc and .zshalias

This commit is contained in:
Tracey Clark 2017-10-26 08:38:01 -05:00
commit 8982abddd4
3 changed files with 8 additions and 1 deletions

View file

@ -1 +1,5 @@
ZSH and Bash config files for personal use
# ZSH and Bash config files for personal use
## TODO
- Add .vimrc
- Add to .vimrc command to map <F3> such that it can switch between paste and nopaste modes:
`set pastetoggle=<F3>`

View file

@ -1,3 +1,4 @@
filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
@ -5,3 +6,4 @@ set tabstop=4
set shiftwidth=4
" On pressing tab, insert 4 spaces
set expandtab
set pastetoggle=<F3>

View file

@ -12,3 +12,4 @@ alias colo='ssh cp'
alias colosync='ssh syncthing@cp'
alias mountpi='sshfs -o idmap=user pi@pi3:/home/pi /home/tracey/pi3'
alias unpi='fusermount -u /home/tracey/pi3'
alias less='less -r'