disable default kickstart theme, make background transparent
This commit is contained in:
parent
143391ea93
commit
c2ac81206f
10
init.lua
10
init.lua
|
|
@ -638,7 +638,7 @@ require('lazy').setup({
|
||||||
end,
|
end,
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
lua = { 'stylua' },
|
lua = { 'stylua' },
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -685,7 +685,7 @@ require('lazy').setup({
|
||||||
signature = { enabled = true },
|
signature = { enabled = true },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
--[[ {
|
||||||
'folke/tokyonight.nvim',
|
'folke/tokyonight.nvim',
|
||||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||||
config = function()
|
config = function()
|
||||||
|
|
@ -697,7 +697,7 @@ require('lazy').setup({
|
||||||
}
|
}
|
||||||
vim.cmd.colorscheme 'tokyonight-night'
|
vim.cmd.colorscheme 'tokyonight-night'
|
||||||
end,
|
end,
|
||||||
},
|
}, ]]
|
||||||
{
|
{
|
||||||
cond = vim.g.vscode == nil,
|
cond = vim.g.vscode == nil,
|
||||||
'folke/todo-comments.nvim',
|
'folke/todo-comments.nvim',
|
||||||
|
|
@ -778,5 +778,9 @@ require('lazy').setup({
|
||||||
require 'custom.remap'
|
require 'custom.remap'
|
||||||
require 'custom.looknfeel'
|
require 'custom.looknfeel'
|
||||||
|
|
||||||
|
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
|
||||||
|
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
|
||||||
|
vim.api.nvim_set_hl(0, 'FloatBorder', { bg = 'none' })
|
||||||
|
|
||||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||||
-- vim: ts=2 sts=2 sw=2 et
|
-- vim: ts=2 sts=2 sw=2 et
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue