>>107508460
It's some fag who installed a ton of editor extensions and they blew up. That's why you don't do that. Here's my vimrc:
:set mouse= "Let Xterm manage the selection buffer
:set termguicolors
:set spell "Spell checking works with syntax on in NeoVim
:set number "Line numbers
:set rnu "Relative line numbers
:set list "Make whitespace visible
:set visualbell "Vim should not touch the bell
:syntax on "Enable syntax highlighting
:set so=999 "Cursor should be in the middle of the screen
:set incsearch "Incremental search
:set hlsearch "Highlight search matches
:set laststatus=0 "Hide status line
:set inccommand=nosplit "Incremental command preview
:set title "Set window title
:set cursorline "Highlight current line
:set cursorcolumn "Highlight current column
:hi NonText cterm=none ctermbg=black ctermfg=black
match NonText '^\s\+'
set listchars=tab:⠠,trail:␣,extends:,precedes:< "Show whitespace
set noexpandtab "Tabs instead of spaces
set shiftwidth=4
set tabstop=4
filetype plugin indent off
set colorcolumn=78 "Highlight margin
call llama#init() "Enable local llama completion
And then there's a couple hundred more lines that let me use it completely blind (I'm not blind I just like the option) via espeak (I used to use festival but it uses too much memory.)
Literally the only plugin here is llama.cpp's autocomplete. You already have netrw,ctags etc built in, there's no good reason to install more.