-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
18 lines (17 loc) · 1007 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set number
set relativenumber
set backspace=indent,eol,start " backspace behaviour
set clipboard=unnamed,unnamedplus " enable clipboard
set encoding=utf8 " enable utf8 support
set hidden " hide buffers, don't close
set mouse=a " enable mouse support
set nowrap " disable wrapping
filetype plugin indent on " enable filetype detection
set listchars=eol:¶,trail:•,tab:▸\ " whitespace characters
set scrolloff=999 " center cursor position vertically
set showbreak=¬\ " Wrapping character
set showmatch " show matching brackets
syntax on
set shiftwidth=4 softtabstop=4 tabstop=4
set hlsearch ignorecase incsearch smartcase " search optionsj
inoremap jk <esc>