blob: 0dd7e1f1eecdd2037e831009792e1cf0c98aa532 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
" vimrc fine shyt
" tabs are either 4 or nada
set tabstop=4
set shiftwidth=4
set expandtab
set exrc secure
set virtualedit=block
" 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 cursorline
" i forgor
set encoding=utf-8
set fileencoding=utf-8
set fileformat=unix
" disable mouse because who fucking needs that shit
set mouse=
" for firenvim
set guifont=Comic\ Mono:h12
" vim-plug fine shyt
call plug#begin()
" plugin list
Plug 'qaptoR-nvim/chocolatier.nvim'
Plug 'nvim-tree/nvim-web-devicons'
Plug 'ficcdaf/ashen.nvim'
Plug 'llathasa-veleth/vim-brainfuck'
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
Plug 'lervag/vimtex'
call plug#end()
" theme
set background=dark
"silent! color chocolatier
"silent! color retrobox
silent! color ashen
" disable BIG jumps everywhere (shift+up / shift+down act like plain arrows)
map <S-Up> <Up>
map <S-Down> <Down>
nmap <S-Up> <Up>
nmap <S-Down> <Down>
imap <S-Up> <Up>
imap <S-Down> <Down>
vmap <S-Up> <Up>
vmap <S-Down> <Down>
xmap <S-Up> <Up>
xmap <S-Down> <Down>
omap <S-Up> <Up>
omap <S-Down> <Down>
cmap <S-Up> <Up>
cmap <S-Down> <Down>
|