My vim configuration
git clone https://github.com/m-col/vim-misc
Files | Refs | Readme

Commit 232666bc5168fd4d015bfc77b8119127b6e17c3f
Parent: dd628963560709a9e8831630f033eec5b637c993
Author: matt colligan <mlv@posteo.net>
Date: 2025-06-17 13:23:42 +0100
Committer: matt colligan <mlv@posteo.net>
Committed: 2025-06-17 13:23:42 +0100

set termguicolors

start/self/plugin/settings.vim Modified

@@ -103,4 +103,3 @@
 
 " used by Ctrl-P, likely among other things
 set wildignore+=*/tmp/*,*.so,*.swp,*.zip,node_modules,target,.mypy_cache
-set notermguicolors

start/self/plugin/init.lua Modified

@@ -1,5 +1,8 @@
 # neovim lua config
 
+-- set this early so that theming can be set up
+vim.opt.termguicolors = true
+
 -- Initialize lazy.nvim
 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
 if not (vim.uv or vim.loop).fs_stat(lazypath) then