commit f6f3cbc14f1b3d8787baaa163c873b6ba0f49b07 Author: Drew DeVault 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 :GitFZF vnoremap Hs :sort /[^;]*/ r 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