diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2025-12-21 18:14:19 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2025-12-21 18:14:19 +0100 |
| commit | d27ed681f6e5b3557418b3a1180f064e69515e82 (patch) | |
| tree | 9185570a645dc54be55869bc83f41e84032b02c9 /cfg/.vimrc | |
| parent | d2d638e7a637bc5dcfb1ef7b2525be6a8d20df18 (diff) | |
cumulative config files (dotfiles) update
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'cfg/.vimrc')
| -rw-r--r-- | cfg/.vimrc | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -4,6 +4,8 @@ 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 @@ -22,6 +24,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() @@ -31,6 +35,8 @@ 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() @@ -39,3 +45,20 @@ 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> + |