Skip to content

Commit dfef305

Browse files
committed
modified: init.lua
1 parent d350db2 commit dfef305

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

init.lua

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
102102
vim.opt.number = true
103103
-- You can also add relative line numbers, to help with jumping.
104104
-- Experiment for yourself to see if you like it!
105-
-- vim.opt.relativenumber = true
105+
vim.opt.relativenumber = true
106106

107107
-- Enable mouse mode, can be useful for resizing splits for example!
108108
vim.opt.mouse = 'a'
@@ -873,20 +873,28 @@ require('lazy').setup({
873873
-- change the command in the config to whatever the name of that colorscheme is.
874874
--
875875
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
876-
'folke/tokyonight.nvim',
876+
'aktersnurra/no-clown-fiesta.nvim',
877877
priority = 1000, -- Make sure to load this before all the other start plugins.
878878
config = function()
879879
---@diagnostic disable-next-line: missing-fields
880-
require('tokyonight').setup {
880+
require('no-clown-fiesta').setup {
881+
transparent = false, -- Enable this to disable the bg color
881882
styles = {
882-
comments = { italic = false }, -- Disable italics in comments
883+
-- You can set any of the style values specified for `:h nvim_set_hl`
884+
comments = {},
885+
functions = {},
886+
keywords = {},
887+
lsp = {},
888+
match_paren = {},
889+
type = {},
890+
variables = {},
883891
},
884892
}
885893

886894
-- Load the colorscheme here.
887895
-- Like many other themes, this one has different styles, and you could load
888896
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
889-
vim.cmd.colorscheme 'tokyonight-night'
897+
vim.cmd.colorscheme 'no-clown-fiesta'
890898
end,
891899
},
892900

0 commit comments

Comments
 (0)