vimrc
This commit is contained in:
23
.vimrc
Normal file
23
.vimrc
Normal file
@@ -0,0 +1,23 @@
|
||||
inoremap jk <ESC>
|
||||
let mapleader = "\<SPACE>"
|
||||
filetype plugin indent on
|
||||
set encoding=utf-8
|
||||
|
||||
syntax enable " enable syntax processing
|
||||
set tabstop=4 " number of visual spaces per TAB
|
||||
set softtabstop=4 " number of spaces in tab when editing
|
||||
set expandtab " tabs are spaces
|
||||
set number " show line numbers
|
||||
set showcmd " show command in bottom bar
|
||||
set cursorline " highlight current line
|
||||
set wildmenu " visual autocomplete for command menu
|
||||
set lazyredraw " redraw only when we need to.
|
||||
set showmatch " highlight matching [{()}]
|
||||
set incsearch " search as characters are entered
|
||||
set hlsearch " highlight matches
|
||||
|
||||
|
||||
noremap <Up> <NOP>
|
||||
noremap <Down> <NOP>
|
||||
noremap <Left> <NOP>
|
||||
noremap <Right> <NOP>
|
Reference in New Issue
Block a user