updates
This commit is contained in:
parent
6f87b9fe31
commit
b4af4f5859
32
init.lua
32
init.lua
|
|
@ -885,22 +885,19 @@ require('lazy').setup({
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ -- You can easily change to a different colorscheme.
|
{
|
||||||
-- Change the name of the colorscheme plugin below, and then
|
'metalelf0/black-metal-theme-neovim',
|
||||||
-- change the command in the config to whatever the name of that colorscheme is.
|
lazy = false, -- Load early to ensure colorscheme is available
|
||||||
--
|
priority = 1000, -- High priority for colorschemes
|
||||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
config = function()
|
||||||
'folke/tokyonight.nvim',
|
require('black-metal').setup {
|
||||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
theme = 'taake', -- Set Taake as the default theme
|
||||||
init = function()
|
variant = 'dark', -- Use the dark variant (default)
|
||||||
-- Load the colorscheme here.
|
alt_bg = false, -- Set to true for marduk-alt (lighter background)
|
||||||
-- Like many other themes, this one has different styles, and you could load
|
transparent = true, -- For transparent background (like tokyonight)
|
||||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
}
|
||||||
require('tokyonight').setup { transparent = true }
|
-- Load the colorscheme after setup
|
||||||
vim.cmd.colorscheme 'tokyonight-night'
|
vim.cmd.colorscheme 'taake'
|
||||||
|
|
||||||
-- You can configure highlights by doing something like:
|
|
||||||
vim.cmd.hi 'Comment gui=none'
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -982,7 +979,8 @@ require('lazy').setup({
|
||||||
vim.api.nvim_set_keymap('i', '<C-J>', 'copilot#Accept("<CR>")', { silent = true, expr = true })
|
vim.api.nvim_set_keymap('i', '<C-J>', 'copilot#Accept("<CR>")', { silent = true, expr = true })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
]]--
|
]]
|
||||||
|
--
|
||||||
|
|
||||||
-- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
|
-- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
|
||||||
-- init.lua. If you want these files, they are in the repository, so you can just download them and
|
-- init.lua. If you want these files, they are in the repository, so you can just download them and
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue