Changed color theme
This commit is contained in:
parent
61f874fcaf
commit
d465dd1e91
|
@ -1,10 +1,10 @@
|
|||
|
||||
function ColorMyPencils(color)
|
||||
color = color or "rose-pine"
|
||||
color = color or "tokyonight-night"
|
||||
vim.cmd.colorscheme(color)
|
||||
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
--vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
--vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
|
||||
end
|
||||
|
||||
|
|
|
@ -15,13 +15,15 @@ return require('packer').startup(function(use)
|
|||
}
|
||||
|
||||
-- Colorscheme
|
||||
use({
|
||||
'rose-pine/neovim',
|
||||
as = 'rose-pine',
|
||||
config = function()
|
||||
vim.cmd('colorscheme rose-pine')
|
||||
end
|
||||
})
|
||||
--use({
|
||||
-- 'rose-pine/neovim',
|
||||
-- as = 'rose-pine',
|
||||
-- config = function()
|
||||
-- vim.cmd('colorscheme rose-pine')
|
||||
-- end
|
||||
--})
|
||||
|
||||
use { "folke/tokyonight.nvim" }
|
||||
|
||||
-- Color Coloring
|
||||
use({ 'nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' } })
|
||||
|
|
Loading…
Reference in New Issue