Skip to content

Commit

Permalink
attempt to load no-clown-fiesta
Browse files Browse the repository at this point in the history
  • Loading branch information
tomspeak committed Feb 20, 2024
1 parent 117062d commit 05be4da
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions kickstart/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,22 @@ require('lazy').setup({
},

{
'ronisbr/nano-theme.nvim',
'aktersnurra/no-clown-fiesta.nvim',
enabled = true,
priority = 1000,
lazy = false,
config = function()
print 'hello'
require('no-clown-fiesta').setup {}
vim.cmd 'colorscheme no-clown-fiesta'
end,
},

{
'ronisbr/nano-theme.nvim',
enabled = false,
priority = 1000,
lazy = false,
init = function()
vim.cmd 'colorscheme nano-theme'
end,
Expand Down Expand Up @@ -242,10 +254,16 @@ require('lazy').setup({
},

{ import = 'custom.plugins' },
}, {})
}, { install = {
colorscheme = { 'no-clown-fiesta' },
}, ui = {
border = 'rounded',
} })

-- [[ Setting options ]]

vim.cmd [[colorscheme no-clown-fiesta]]

-- Set highlight on search
vim.o.hlsearch = false

Expand Down

0 comments on commit 05be4da

Please sign in to comment.