Skip to content

Commit

Permalink
actually pass options to tokyonight
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5a4 committed Nov 9, 2024
1 parent aaa6318 commit 918ce7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ require("lazy").setup({
backdrop = 100,
},
install = {
colorscheme = { "tokyonight-night" },
colorscheme = { "tokyonight" },
},
dev = {
path = "~/src",
Expand Down
12 changes: 6 additions & 6 deletions config/nvim/lua/xfaf/plugins/aesthetics.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ return {
{
"folke/tokyonight.nvim",
priority = 1000,
opts = {
style = "night",
transparent = true,
},
config = function()
vim.cmd([[colorscheme tokyonight-night]])
require("tokyonight").setup({
style = "night",
transparent = true,
})
vim.cmd("colorscheme tokyonight")
end,
lazy = false,
},
Expand Down Expand Up @@ -63,7 +63,7 @@ return {
{
"eandrju/cellular-automaton.nvim",
keys = {
{ "<leader>fml", "<cmd>CellularAutomaton make_it_rain<CR>" },
{ "(leader)fml", "(cmd)CellularAutomaton make_it_rain<CR>" },
},
cmd = "CellularAutomaton",
},
Expand Down

0 comments on commit 918ce7c

Please sign in to comment.