blob: e493fd94ef236b5cc7cf2b666dc4edc778768693 (
plain)
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
|
" vimrc fine shyt
" tabs are either 4 or nada
set tabstop=4
set shiftwidth=4
" c-o-l-o-r-s-!
syntax on
filetype plugin on
" useful (i dont even use this anymore)
set backspace=indent,eol,start
nnoremap <C-S> :w<CR>
inoremap <C-S> <Esc>:w<CR>a
" i set this while crying because vim on windows sucks so much
" kinda useless though nvim suxx so this is still useful
set guicursor=n-v-c-i:block
" relative line numbers for life
set nu rnu
" i forgor
set encoding=utf-8
set fileencoding=utf-8
" vim-plug fine shyt
call plug#begin()
" plugin list
Plug 'qaptoR-nvim/chocolatier.nvim'
Plug 'nvim-tree/nvim-web-devicons'
call plug#end()
" theme
set background=dark
silent! colorscheme chocolatier
|