Added my current bashrc and vimrc

This commit is contained in:
Wryn Wagner
2019-04-04 16:03:35 -06:00
commit f9eb66b948
2 changed files with 213 additions and 0 deletions

31
vimrc Normal file
View File

@ -0,0 +1,31 @@
" -- Vundle Config --
source ~/.vim/.vimrc-vundle
" -- Plugin Config --
source ~/.vim/.vimrc-myPlugins
" -- Smart, Single-line Indentation --
set breakindent
set breakindentopt=shift:3
" prevents the breaking up of words
set formatoptions=l
set lbr
" -- Colorscheme Configuration --
let &t_Co=256
colorscheme tigrana-256-dark
" -- General --
set number
syntax on
set autoindent
set smartindent
set spelllang=en
set spellfile=$HOME/en.utf-8.add
" -- quick run macro recorded to q:
:nnoremap <Space> @q
" -- execute current line as shell command
:noremap Q !!$SHELL<CR>
:vnoremap Q !$SHELL<CR>