diff --git a/init.lua b/init.lua index 1427b6c7..364ef34e 100644 --- a/init.lua +++ b/init.lua @@ -359,7 +359,7 @@ require('lazy').setup({ -- `build` is used to run some command when the plugin is installed/updated. -- This is only run then, not every time Neovim starts up. - build = 'make', + build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build', -- `cond` is a condition used to determine whether this plugin should be -- installed and loaded. @@ -894,20 +894,18 @@ require('lazy').setup({ -- change the command in the config to whatever the name of that colorscheme is. -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - 'folke/tokyonight.nvim', + 'projekt0n/github-nvim-theme', priority = 1000, -- Make sure to load this before all the other start plugins. config = function() ---@diagnostic disable-next-line: missing-fields - require('tokyonight').setup { + require('github-theme').setup { styles = { comments = { italic = false }, -- Disable italics in comments }, } -- Load the colorscheme here. - -- Like many other themes, this one has different styles, and you could load - -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'github_light' end, },