Last active
January 19, 2021 17:35
-
-
Save lowleveldesign/a9c00b35223a07d98573a84f914fdd4a to your computer and use it in GitHub Desktop.
My .vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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