-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
51 lines (42 loc) · 860 Bytes
/
vimrc
File metadata and controls
51 lines (42 loc) · 860 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
call plug#begin()
Plug 'itchyny/lightline.vim'
Plug 'joshdick/onedark.vim'
Plug 'junegunn/vim-easy-align'
Plug 'mhinz/vim-startify'
Plug 'rakr/vim-one'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-rsi'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'tpope/vim-vinegar'
Plug 'tommcdo/vim-exchange'
call plug#end()
let &ar = 1
let &nu = 1
let &hid = 1
let &awa = 1
let &swf = 0
let &smd = 0
let &go = ''
let &bo = 'all'
let &bg = 'dark'
let &cb = 'unnamed'
let &enc = 'utf-8'
let &gfn = 'Iosevka:h14'
let &rop = 'type:directx'
colorscheme one
no Y y$
no j gj
no k gk
vn < <gv
vn = =gv
vn > >gv
xm <Space> <Plug>(LiveEasyAlign)
nm <Space> <Plug>(LiveEasyAlign)
ino <C-S> <C-O>^
cno <C-S> <Home>
let g:lightline = { 'colorscheme': 'one' }