diff --git a/init.lua b/init.lua index 5a21f64..d93da10 100644 --- a/init.lua +++ b/init.lua @@ -1,3 +1,3 @@ require("kameleon") -print("hello") +--print("hello") diff --git a/lua/kameleon/init.lua b/lua/kameleon/init.lua index 72f67d5..127c3f4 100644 --- a/lua/kameleon/init.lua +++ b/lua/kameleon/init.lua @@ -3,4 +3,4 @@ require("kameleon.remap") require("kameleon.lazy_init") -print("hello from kameleon") +--print("hello from kameleon") diff --git a/lua/kameleon/lazy/colors.lua b/lua/kameleon/lazy/colors.lua index 3a40dff..141d4b4 100644 --- a/lua/kameleon/lazy/colors.lua +++ b/lua/kameleon/lazy/colors.lua @@ -1,7 +1,7 @@ function ColorMyPencils(color) - color = color or "rose-pine" + color = color or "tokyonight" vim.cmd.colorscheme(color) - + vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) end @@ -11,38 +11,38 @@ return { "folke/tokyonight.nvim", - config = function() - require("tokyonight").setup({ - -- your configuration comes here - -- -- or leave it empty to use the default settings - style = "storm", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day` - transparent = true, -- Enable this to disable setting the background color - terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim - styles = { - -- Style to be applied to different syntax groups - -- Value is any valid attr-list value for `:help nvim_set_hl` - comments = { italic = false }, - keywords = { italic = false }, - -- Background styles. Can be "dark", "transparent" or "normal" - sidebars = "dark", -- style for sidebars, see below - floats = "dark", -- style for floating windows - }, - }) + config = function() + require("tokyonight").setup({ + -- your configuration comes here + -- -- or leave it empty to use the default settings + style = "storm", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day` + transparent = true, -- Enable this to disable setting the background color + terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim + styles = { + -- Style to be applied to different syntax groups + -- Value is any valid attr-list value for `:help nvim_set_hl` + comments = { italic = false }, + keywords = { italic = false }, + -- Background styles. Can be "dark", "transparent" or "normal" + sidebars = "dark", -- style for sidebars, see below + floats = "dark", -- style for floating windows + }, + }) end }, - { - "rose-pine/neovim", - name = "rose-pine", - config = function() - require('rose-pine').setup({ - disable_background = true, - }) + { + "rose-pine/neovim", + name = "rose-pine", + config = function() + require('rose-pine').setup({ + disable_background = true, + }) vim.cmd("colorscheme rose-pine") - ColorMyPencils() - end - }, + ColorMyPencils() + end + }, }