Add NeoVim configuration with default font and update setup script
This commit is contained in:
parent
c02f5ce861
commit
255cad1cb4
107 changed files with 290 additions and 0 deletions
10
nvim/lua/plugins/theme.lua
Normal file
10
nvim/lua/plugins/theme.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue