Skip to content

Commit

Permalink
making the default color to Toykonight instead of rose-pine. Removed …
Browse files Browse the repository at this point in the history
…the Hello messages when first entering nvim
  • Loading branch information
aHulswitt36 committed Feb 25, 2024
1 parent faf2ceb commit e7788b7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require("kameleon")
print("hello")
--print("hello")

2 changes: 1 addition & 1 deletion lua/kameleon/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ require("kameleon.remap")

require("kameleon.lazy_init")

print("hello from kameleon")
--print("hello from kameleon")
58 changes: 29 additions & 29 deletions lua/kameleon/lazy/colors.lua
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
},

}

0 comments on commit e7788b7

Please sign in to comment.