-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vimrc
71 lines (55 loc) · 979 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
filetype plugin on
set nocompatible
set belloff=all
set title
set shell=bash
set updatetime=1000
set ttyfast
set timeout timeoutlen=1000 ttimeoutlen=50
set autoread
set hidden
set novb
" turn off arrow keys
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
set nowrap
set history=1000
set undolevels=1000
set wildignore=*.swp,*.bak,*.pyc,*.class
set title
set noerrorbells
set scrolloff=4
set pastetoggle=<F2>
nmap <silent> ,/ :nohlsearch<CR>
set nobackup
set noswapfile
set number
noremap ; :
syntax enable
set tabstop=4
set softtabstop=4
set expandtab
set autoindent
set copyindent
set shiftround
filetype indent on
set listchars=extends:#
set showcmd
set wildmenu
set wildmode=list:full
set lazyredraw
set showmatch
nnoremap j gj
nnoremap k gk
set smartcase
set hlsearch
set incsearch
""" vim tabs and status and splits
nnoremap <C-j> :tabprevious<CR>
nnoremap <C-k> :tabnext<CR>
map W <C-W>w
set splitright
set splitbelow
set background=dark