Skip to content

Commit

Permalink
switch to min theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ImenKedir committed Jan 6, 2023
1 parent 4acc7b1 commit 04d1fe6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 41 deletions.
45 changes: 5 additions & 40 deletions lua/config/colorschemes.lua
Original file line number Diff line number Diff line change
@@ -1,40 +1,5 @@
import("catppuccin", function(catppuccin)
catppuccin.setup({
flavour = "mocha", -- latte, frappe, macchiato, mocha
term_colors = true,
transparent_background = false,
no_italic = false,
no_bold = false,
styles = {
comments = {},
conditionals = {},
loops = {},
functions = {},
keywords = {},
strings = {},
variables = {},
numbers = {},
booleans = {},
properties = {},
types = {},
},
color_overrides = {
mocha = {
base = "#000000",
},
},
highlight_overrides = {
mocha = function(C)
return {
TabLineSel = { bg = C.pink },
NvimTreeNormal = { bg = C.none },
CmpBorder = { fg = C.surface2 },
Pmenu = { bg = C.none },
NormalFloat = { bg = C.none },
TelescopeBorder = { link = "FloatBorder" },
}
end,
},
})
vim.cmd.colorscheme("catppuccin")
end)
local status, _ = pcall(vim.cmd, "colorscheme minimal")
if not status then
print("Colorscheme not found")
return
end
2 changes: 1 addition & 1 deletion lua/config/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ return packer.startup(function(use)
use("akinsho/git-conflict.nvim")

-- Colorscheme
use({ "catppuccin/nvim", as = "catppuccin" })
use({ "Yazeed1s/minimal.nvim" })

-- Treesitter
use("nvim-treesitter/nvim-treesitter")
Expand Down

0 comments on commit 04d1fe6

Please sign in to comment.