feat: use tune
This commit is contained in:
parent
a0181df32b
commit
8367258924
|
@ -1,15 +0,0 @@
|
||||||
require('rose-pine').setup {
|
|
||||||
disable_background = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
function ColorMyPencils(color)
|
|
||||||
color = color or 'rose-pine'
|
|
||||||
vim.cmd.colorscheme(color)
|
|
||||||
|
|
||||||
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
|
|
||||||
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
|
|
||||||
end
|
|
||||||
|
|
||||||
ColorMyPencils()
|
|
||||||
|
|
||||||
vim.cmd 'autocmd BufEnter * ThematicRandom'
|
|
|
@ -0,0 +1 @@
|
||||||
|
return { 'AlessandroYorba/Alduin' }
|
|
@ -2,4 +2,4 @@
|
||||||
-- I promise not to create any merge conflicts in this directory :)
|
-- I promise not to create any merge conflicts in this directory :)
|
||||||
--
|
--
|
||||||
-- See the kickstart.nvim README for more information
|
-- See the kickstart.nvim README for more information
|
||||||
return { import = "custom.plugins.themes" }
|
return { import = 'custom.plugins.colorschemes' }
|
|
@ -1 +0,0 @@
|
||||||
return { 'rafamadriz/neon' }
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
return {
|
||||||
|
dir = '~/projects/tune.nvim',
|
||||||
|
config = function()
|
||||||
|
require('tune').setup()
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in New Issue