-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.vim
31 lines (28 loc) · 891 Bytes
/
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
set number
set smartindent
set autoindent
set expandtab
set shiftwidth=4
set tabstop=4
set title
set nowrap
set background=dark
set termguicolors
call plug#begin()
Plug 'https://github.com/evanleck/vim-svelte'
Plug 'https://github.com/marciomazza/vim-brogrammer-theme'
Plug 'https://github.com/cseelus/vim-colors-lucid'
Plug 'https://github.com/srcery-colors/srcery-vim'
Plug 'https://github.com/mkarmona/materialbox'
Plug 'https://github.com/jdsimcoe/hyper.vim'
Plug 'vim-python/python-syntax'
Plug 'https://github.com/bfrg/vim-cpp-modern'
Plug 'https://github.com/CreaturePhil/vim-handmade-hero'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'ms-jpq/chadtree', {'branch': 'chad', 'do': 'python3 -m chadtree deps'}
Plug 'bluz71/vim-moonfly-colors'
Plug 'preservim/vim-colors-pencil'
call plug#end()
let g:python_highlight_all = 1
let g:cpp_member_highlight = 1
colorscheme pencil