-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc-minium
More file actions
56 lines (47 loc) · 1008 Bytes
/
vimrc-minium
File metadata and controls
56 lines (47 loc) · 1008 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
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
" Copy content only! Dont use this file directly
set nocompatible " required
filetype off " required
"============================================================"
" Enable folding
set foldmethod=indent
set foldlevel=99
" Enable folding with the spacebar
nnoremap <space> za
" Line number
set nu
set cursorline
" Search
set hlsearch
set incsearch
set showmatch
set ignorecase
set smartcase
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set autoindent
" Python
au BufNewFile,BufRead *.py
\ set textwidth=79 |
\ set fileformat=unix |
" Yaml
au BufNewFile,BufRead *.yaml
\ set tabstop=2 |
\ set softtabstop=2 |
\ set shiftwidth=2 |
" Vagrantfile
au BufNewFile,BufRead Vagrantfile
\ set tabstop=2 |
\ set softtabstop=2 |
\ set shiftwidth=2 |
"Syntax
let python_highlight_all=1
syntax on
set backspace=indent,eol,start
set splitbelow
set splitright
" Powerline
set laststatus=2
set t_Co=256
let g:Powerline_symbols = "fancy"