Skip to content

Instantly share code, notes, and snippets.

@lowleveldesign
Last active January 19, 2021 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lowleveldesign/a9c00b35223a07d98573a84f914fdd4a to your computer and use it in GitHub Desktop.
Save lowleveldesign/a9c00b35223a07d98573a84f914fdd4a to your computer and use it in GitHub Desktop.
My .vimrc
set background=dark
" do not keep a backup file, use versions instead
set nobackup
" keep 50 lines of command line history
set history=50
" show the cursor position all the time
set ruler
" display incomplete commands
set showcmd
" do incremental searching
set incsearch
" display line numbers on the left
set number
" match other bracket types too
set matchpairs+=<:>
" do not wrap in the middle of the word
set lbr
" set tabulator settings
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
set smartindent
" set case insensitive search
set ignorecase smartcase
" replace esc
inoremap kj <esc>
inoremap <esc> <nop>
" better navigation
nnoremap j gj
nnoremap k gk
vnoremap j gj
vnoremap k gk
nnoremap H ^
nnoremap L $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment