update neovim config, add and change themes
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
function ColorMyTerminal(color)
|
||||
color = color or "rose-pine-moon"
|
||||
color = color or "tokyonight-night"
|
||||
vim.cmd.colorscheme(color)
|
||||
|
||||
vim.cmd("hi ColorColumn ctermbg=0 guibg=purple")
|
||||
vim.api.nvim_set_hl(0, "Normal", {bg = "none"})
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", {bg = "none"})
|
||||
end
|
||||
|
||||
ColorMyTerminal()
|
||||
|
||||
@@ -2,6 +2,9 @@ return require('packer').startup(function(use)
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||
use({ 'folke/tokyonight.nvim', as = 'tokyonight' })
|
||||
use({ 'karoliskoncevicius/sacredforest-vim', as = 'sacredforest' })
|
||||
use({ 'EdenEast/nightfox.nvim', as = 'nightfox' })
|
||||
|
||||
use 'nvim-telescope/telescope.nvim'
|
||||
use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'})
|
||||
|
||||
Reference in New Issue
Block a user