-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
48 lines (38 loc) · 931 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
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set number
set numberwidth=5
set guifont=Fira\ Code
set background=light
set hlsearch
colorscheme lucius
LuciusWhite
if &compatible
set nocompatible
endif
filetype off
" append to runtime path
set rtp+=/usr/share/vim/vimfiles
" initialize dein, plugins are installed to this directory
call dein#begin(expand('~/.cache/dein'))
" add packages here, e.g:
call dein#add('jonathanfilip/vim-lucius')
call dein#add('vim-airline/vim-airline')
call dein#add('vim-airline/vim-airline-themes')
" exit dein
call dein#end()
" auto-install missing packages on startup
if dein#check_install()
call dein#install()
endif
filetype plugin on
syntax enable
" remember last cursor position in file
augroup resCur
autocmd!
autocmd BufReadPost * call setpos(".", getpos("'\""))
augroup END
let g:airline_theme='wombat'
let g:airline_powerline_fonts = 1