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
commit f6f3cbc14f1b3d8787baaa163c873b6ba0f49b07
Author: Drew DeVault <drew@ddevault.org>
Date: Wed Mar 25 16:55:33 2026 +0100
.vimrc: housekeeping for vim classic switch
diff --git a/.vimrc b/.vimrc
index 8152bd3..6aaecdb 100644
--- a/.vimrc
+++ b/.vimrc
@@ -6,6 +6,7 @@ Plug 'editorconfig/editorconfig-vim'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
+Plug 'junegunn/fzf'
" Meta plugins
Plug 'vim-scripts/SyntaxRange'
Plug 'vim-scripts/ingo-library'
@@ -20,8 +21,7 @@ Plug 'lluchs/vim-wren'
Plug 'boltlang/vim-bolt'
call plug#end()
-colorscheme vim
-
+set backspace=indent,eol,start
set laststatus=2
set t_Co=256
set encoding=utf-8
@@ -46,6 +46,7 @@ set noswapfile
set nofoldenable
set lazyredraw
set spc=
+set nojoinspaces
let g:fzf_layout = { 'window': { 'width': 1.0, 'height': 0.5, 'relative': v:true, 'yoffset': 1.0, 'border': 'none' } }
let $FZF_DEFAULT_COMMAND = 'rg --no-ignore-parent --files --hidden'
@@ -69,6 +70,7 @@ nnoremap <C-p> :GitFZF<CR>
vnoremap Hs :sort /[^;]*/ r<CR>
syntax enable
+colorscheme torte
highlight Normal ctermfg=none ctermbg=none
highlight NonText ctermfg=none ctermbg=none
highlight EndOfBuffer ctermfg=none ctermbg=none
@@ -98,6 +100,7 @@ highlight PmenuSel ctermbg=darkcyan ctermfg=black
highlight hareKeyword ctermbg=NONE ctermfg=blue
highlight hareLabel ctermbg=NONE cterm=bold
highlight hareType ctermfg=darkcyan
+highlight Normal ctermbg=NONE ctermfg=NONE
hi! def hareErrorTest guifg=red gui=bold ctermfg=red cterm=bold
autocmd FileType markdown setlocal tw=80 et ts=2 sw=2