update .vimrc & .bashrc, add vpn-local-conection.sh

This commit is contained in:
arnaucube
2019-07-14 12:54:25 +02:00
parent 2ef135e5c1
commit 4adf0b15e3
3 changed files with 15 additions and 2 deletions

10
.vimrc
View File

@@ -2,6 +2,7 @@ call plug#begin(expand('~/.vim/plugged'))
Plug 'scrooloose/nerdtree'
map <C-n> :NERDTreeToggle<CR>
let NERDTreeShowHidden=1
"" Color
Plug 'tomasr/molokai'
@@ -18,9 +19,16 @@ set title
set titlestring=vim-%F
set t_Co=256
set cursorline
set background=dark " for the dark version
if $COLORTERM == 'gnome-terminal'
set term=gnome-256color
else
if $TERM == 'xterm'
set term=xterm-256color
endif
endif
" abbreviations
cnoreabbrev W! w!
cnoreabbrev Q! q!