From c2ac81206f855ad574c486e0da5c4e45666d9a32 Mon Sep 17 00:00:00 2001 From: engines2k Date: Sat, 8 Nov 2025 21:07:03 -0700 Subject: [PATCH] disable default kickstart theme, make background transparent --- init.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index a8bf149b..bb138066 100644 --- a/init.lua +++ b/init.lua @@ -638,7 +638,7 @@ require('lazy').setup({ end, formatters_by_ft = { lua = { 'stylua' }, - } + }, }, }, { @@ -685,7 +685,7 @@ require('lazy').setup({ signature = { enabled = true }, }, }, - { + --[[ { 'folke/tokyonight.nvim', priority = 1000, -- Make sure to load this before all the other start plugins. config = function() @@ -697,7 +697,7 @@ require('lazy').setup({ } vim.cmd.colorscheme 'tokyonight-night' end, - }, + }, ]] { cond = vim.g.vscode == nil, 'folke/todo-comments.nvim', @@ -778,5 +778,9 @@ require('lazy').setup({ require 'custom.remap' 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` -- vim: ts=2 sts=2 sw=2 et