mainly colorscheme related + added dunst
This commit is contained in:
parent
cf75e689e5
commit
433c56f166
12 changed files with 370 additions and 20 deletions
|
@ -1,5 +1,5 @@
|
|||
require("catppuccin").setup({
|
||||
flavour = "frappe", -- latte, frappe, macchiato, mocha
|
||||
flavour = "macchiato", -- latte, frappe, macchiato, mocha
|
||||
transparent_background = false,
|
||||
term_colors = false,
|
||||
|
||||
|
@ -26,12 +26,29 @@ require("catppuccin").setup({
|
|||
},
|
||||
})
|
||||
|
||||
function ColorMyPencils(color)
|
||||
color = color or "catppuccin"
|
||||
require("gruvbox").setup({
|
||||
undercurl = true,
|
||||
underline = true,
|
||||
bold = true,
|
||||
italic = {
|
||||
strings = false,
|
||||
comments = true,
|
||||
operators = false,
|
||||
folds = true,
|
||||
},
|
||||
strikethrough = true,
|
||||
invert_selection = false,
|
||||
invert_signs = false,
|
||||
invert_tabline = false,
|
||||
invert_intend_guides = false,
|
||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
contrast = "", -- can be "hard", "soft" or empty string
|
||||
palette_overrides = {},
|
||||
overrides = {},
|
||||
dim_inactive = false,
|
||||
transparent_mode = false,
|
||||
})
|
||||
|
||||
vim.cmd.colorscheme(color)
|
||||
-- vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
end
|
||||
vim.o.background = "dark"
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
|
||||
ColorMyPencils()
|
||||
|
|
|
@ -47,5 +47,5 @@ return require('packer').startup(function(use)
|
|||
|
||||
-- Colorscheme section
|
||||
use("catppuccin/nvim")
|
||||
use("folke/tokyonight.nvim")
|
||||
use("ellisonleao/gruvbox.nvim")
|
||||
end)
|
||||
|
|
|
@ -109,6 +109,11 @@ _G.packer_plugins = {
|
|||
path = "/home/tsousa/.local/share/nvim/site/pack/packer/start/fidget.nvim",
|
||||
url = "https://github.com/j-hui/fidget.nvim"
|
||||
},
|
||||
["gruvbox.nvim"] = {
|
||||
loaded = true,
|
||||
path = "/home/tsousa/.local/share/nvim/site/pack/packer/start/gruvbox.nvim",
|
||||
url = "https://github.com/ellisonleao/gruvbox.nvim"
|
||||
},
|
||||
harpoon = {
|
||||
loaded = true,
|
||||
path = "/home/tsousa/.local/share/nvim/site/pack/packer/start/harpoon",
|
||||
|
@ -199,11 +204,6 @@ _G.packer_plugins = {
|
|||
path = "/home/tsousa/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
||||
url = "https://github.com/nvim-telescope/telescope.nvim"
|
||||
},
|
||||
["tokyonight.nvim"] = {
|
||||
loaded = true,
|
||||
path = "/home/tsousa/.local/share/nvim/site/pack/packer/start/tokyonight.nvim",
|
||||
url = "https://github.com/folke/tokyonight.nvim"
|
||||
},
|
||||
undotree = {
|
||||
loaded = true,
|
||||
path = "/home/tsousa/.local/share/nvim/site/pack/packer/start/undotree",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue