Skip to content

Commit 34fba45

Browse files
committed
update theme
1 parent 2abcb39 commit 34fba45

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

init.lua

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ require('lazy').setup({
359359

360360
-- `build` is used to run some command when the plugin is installed/updated.
361361
-- This is only run then, not every time Neovim starts up.
362-
build = 'make',
362+
build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build',
363363

364364
-- `cond` is a condition used to determine whether this plugin should be
365365
-- installed and loaded.
@@ -894,20 +894,18 @@ require('lazy').setup({
894894
-- change the command in the config to whatever the name of that colorscheme is.
895895
--
896896
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
897-
'folke/tokyonight.nvim',
897+
'projekt0n/github-nvim-theme',
898898
priority = 1000, -- Make sure to load this before all the other start plugins.
899899
config = function()
900900
---@diagnostic disable-next-line: missing-fields
901-
require('tokyonight').setup {
901+
require('github-theme').setup {
902902
styles = {
903903
comments = { italic = false }, -- Disable italics in comments
904904
},
905905
}
906906

907907
-- Load the colorscheme here.
908-
-- Like many other themes, this one has different styles, and you could load
909-
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
910-
vim.cmd.colorscheme 'tokyonight-night'
908+
vim.cmd.colorscheme 'github_light'
911909
end,
912910
},
913911

0 commit comments

Comments
 (0)