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