Skip to content

Instantly share code, notes, and snippets.

@vs2961
Created April 20, 2023 02:53
Show Gist options
  • Save vs2961/e65af0dafd22f5fb0c750701609ee11f to your computer and use it in GitHub Desktop.
Save vs2961/e65af0dafd22f5fb0c750701609ee11f to your computer and use it in GitHub Desktop.
Victor's .vimrc for ieng6
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set mouse=a
set nu
set statusline+=%#warningmsg#
set statusline+=%*
:set backspace=indent,eol,start
:map <C-a> GVgg
:map <C-n> :enew
:map <C-o> :e . <Enter>
:map <C-s> :w <Enter>
:map <C-c> y
:map <C-v> p
:map <C-x> d
:map <C-z> u
:map <C-i> >>
:map <C-f> /
:map <F3> n
:map <C-h> :%s/
:map <S-t> vat
:map <S-T> vit
:map <S-{> vi{
:map <S-(> vi(
:map <S-[> vi[
:inoremap <C-v> <ESC>"+pa
:vnoremap <C-c> "+y
:vnoremap <C-d> "+d
:set pastetoggle=<f5>
syntax on
colorscheme industry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment