-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
34 lines (30 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
" Use Vim settings, rather then Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible " set nocp
set backspace=indent,eol,start " allow backspacing over everything in insert mode
set history=50 " keep 50 lines of command line history
set hlsearch
set incsearch " do incremental searching
set nowrap
set number
set ruler " show the cursor position all the time
set softtabstop=4 shiftwidth=4 tabstop=4 expandtab
set showcmd " display incomplete commands
set laststatus=2
set smartcase
set t_Co=256
syntax on
let g:vim_json_syntax_conceal = 0
if has("vms")
set nobackup " do not keep a backup file, use versions instead
else
set backup " keep a backup file
set backupdir=/tmp/.vim_backup,/tmp,.
set directory=/tmp/.vim_tmp,/tmp,.
endif
if has("gui_running")
set lines=40 columns=132
set guifont=JetBrains\ Mono:h10
endif
set background=dark
colorscheme jellybeans