Skip to content

Instantly share code, notes, and snippets.

@ialiendeg
Last active October 22, 2019 21:06
Show Gist options
  • Save ialiendeg/1904017 to your computer and use it in GitHub Desktop.
Save ialiendeg/1904017 to your computer and use it in GitHub Desktop.
Vimrc with vundle
"Simple vimrc.
filetype plugin indent on
syntax on
set softtabstop=2
set shiftwidth=2
set scrolloff=10
set expandtab
"set smartindent
set smarttab
set ignorecase
set smartcase "override ignorecase if search is case_sensitive
set ruler
set laststatus=2
set backspace=indent,eol,start
runtime macros/matchit.vim
nmap <c-k> :tabn
nmap <c-j> :tabp
imap <c-k> <c-o>:tabn
imap <c-j> <c-o>:tabp
set guioptions-=T
let loaded_matchparen = 1
nnoremap CC \c
let dir=system('pwd')
set noautochdir
set hidden
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment