-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.vim
50 lines (45 loc) · 1.23 KB
/
init.vim
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
" ( OO ) ) ( OO) ) _(OO )_ ( '.( OO )_
" ,-.-') ,--./ ,--,' ,-.-') / '._ ,--(_/ ,. \ ,-.-') ,--. ,--.)
" | |OO)| \ | |\ | |OO)|'--...__)\ \ /(__/ | |OO)| `.' |
" | | \| \| | )| | \'--. .--' \ \ / / | | \| |
" | |(_/| . |/ | |(_/ | | \ ' /, | |(_/| |'.'| |
" ,| |_.'| |\ | ,| |_.' | | \ /__),| |_.'| | | |
"(_| | | | \ |(_| | | |.-. \ / (_| | | | | |
" `--' `--' `--' `--' `--'`-' `-' `--' `--' `--'
autocmd!
"""sets baby
set number
set relativenumber
set title
set tabstop=4
set shiftwidth=4
set lazyredraw
set background=dark
set nowrap
set noswapfile
set cursorline
set scrolloff=10
set encoding=utf-8
set nosc noru nosm
set ignorecase
set smarttab
set ai
set si
set backspace=start,eol,indent
""Indents
filetype plugin indent on
"""colorschemes
if exists("&termguicolors") && exists("&winblend")
syntax enable
set termguicolors
set winblend=0
set wildoptions=pum
set winblend=0
set wildoptions=pum
set pumblend=5
set background=dark
colorscheme dracula_pro
endif
autocmd BufEnter * lua require'completion'.on_attach()
runtime ./plug.vim
runtime ./maps.vim