all repos — dotfiles @ 66318dd19348e042835aa3db8974f5d98a49d954

linux dotfiles

update vimrc
prithugoswami prithugoswami524@gmail.com
Sat, 28 Apr 2018 13:41:19 +0530
commit

66318dd19348e042835aa3db8974f5d98a49d954

parent

10e3b74457c5556142b5910f419b3986c1a61920

1 files changed, 3 insertions(+), 11 deletions(-)

jump to
M .vimrc.vimrc

@@ -2,10 +2,10 @@ execute pathogen#infect()

let vim_markdown_preview_github=1 let vim_markdown_preview_toggle=1 -set tabstop=2 " number of visual spaces per tab -set softtabstop=2 " number of spaces in the tab when editing +set tabstop=4 " number of visual spaces per tab +set softtabstop=4 " number of spaces in the tab when editing set expandtab " tabs are shortcut for spaces -set shiftwidth=2 +set shiftwidth=4 syntax enable " enalbe syntax processing set smartindent " when opening a new line, keep the same indentation if no

@@ -52,14 +52,6 @@

" allow to move around visualy by default nnoremap j gj nnoremap k gk - -" Move the begining/end of the line -nnoremap B ^ -nnoremap E $ - -" $/^ doesn't do anything -nnoremap $ <nop> -nnoremap ^ <nop> " highlight last inserted text nnoremap gV `[v`]