Created
March 7, 2016 15:48
-
-
Save phaberest/26df1c34e105f36228d7 to your computer and use it in GitHub Desktop.
Terminal basic vimrc
This file contains 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 encoding=utf8 | |
set autoread | |
set backspace=indent,eol,start | |
set nu | |
set showcmd | |
set cursorline | |
set incsearch | |
set hlsearch | |
set lazyredraw | |
set showmatch | |
set splitright | |
set splitbelow | |
set clipboard=unnamed | |
let backspace=2 | |
" turn off search highlight | |
nnoremap <leader><space> :nohlsearch<CR> | |
" move vertically by visual line | |
nnoremap j gj | |
nnoremap k gk | |
" move to beginning/end of line | |
nnoremap B ^ | |
nnoremap E $ | |
set background=dark | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment