Add NeoVim configuration with default font and update setup script

This commit is contained in:
Daniel McKnight 2025-05-15 19:44:35 -07:00
parent c02f5ce861
commit 255cad1cb4
107 changed files with 290 additions and 0 deletions

View file

@ -0,0 +1,10 @@
return {
'projekt0n/github-nvim-theme',
name = 'github-theme',
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('github-theme').setup({})
vim.cmd('colorscheme github_dark_default')
end,
}