-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_vimrc
50 lines (39 loc) · 906 Bytes
/
dot_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
call plug#begin()
Plug 'morhetz/gruvbox'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
Plug 'jiangmiao/auto-pairs'
call plug#end()
syntax on
filetype plugin indent on
set encoding=UTF-8
set gfn=FantasqueSansMono\ Nerd\ Font\ Mono:h14,FiraCode\ Nerd\ Font:h14,Source\ Code\ Pro:h15,Menlo:h15
set number
set relativenumber
set cursorline
set ruler
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set autoindent
set cindent
set smartindent
set nobackup
set nowritebackup
set noswapfile
colorscheme gruvbox
set background=dark
set noshowmode
set lazyredraw
set laststatus=2
set updatetime=300
set hidden
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#tabline#formatter='unique_tail'
if &term =~ '256color'
set t_ut=
endif