-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc.settings
More file actions
25 lines (23 loc) · 1000 Bytes
/
vimrc.settings
File metadata and controls
25 lines (23 loc) · 1000 Bytes
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
set nocompatible
set backspace=indent,eol,start
set history=200
set scrolloff=2
set sw=2 tabstop=2 shiftround " Whitespace
set number relativenumber " Numbering
set hlsearch ignorecase incsearch smartcase " Search
set shortmess-=S " Count search matches and progress
set cindent expandtab " Indentation
set updatetime=250 " vim-gitgutter
set wildmenu wildmode=full " Autocompletion
set foldlevel=99 foldmethod=indent " Folding
set laststatus=2 " Always display status bar
set list " Allow changing character displays
set listchars=tab:>- " Display tabs as >-
set hidden
set viminfo='100,n$HOME/.vim/files/info/viminfo
set swapfile
set dir=/tmp
set ttimeoutlen=0
let mapleader = "\<Space>"
let g:markdown_fenced_languages = ['diff', 'ruby', 'vim']
let g:markdown_syntax_conceal = 0