Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
feat: i'll use catppuccin like a normie
Browse files Browse the repository at this point in the history
  • Loading branch information
nexxeln committed Jan 9, 2023
1 parent 33cd7f1 commit 4d4eab2
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion after/plugin/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ end

lualine.setup({
options = {
themes = "mellow",
themes = "catppuccin",
icons_enabled = true,
section_separators = { left = "", right = "" },
component_separators = { left = "", right = "" },
Expand Down
37 changes: 36 additions & 1 deletion lua/colorscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,39 @@
--
-- vim.cmd.colorscheme("kanagawa")

vim.cmd.colorscheme("mellow")
-- vim.cmd.colorscheme("mellow")

local catppuccin_present, catppuccin = pcall(require, "catppuccin")

if not catppuccin_present then
return
end

catppuccin.setup({
flavour = "mocha",
no_italic = true,
no_bold = true,
integrations = {
hop = true,
fidget = true,
lsp_trouble = true,
markdown = true,
},
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
},
},
})

vim.cmd.colorscheme("catppuccin")
1 change: 1 addition & 0 deletions lua/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ return require("packer").startup({
-- color schemes
use("rebelot/kanagawa.nvim")
use("kvrohit/mellow.nvim")
use({ "catppuccin/nvim", as = "catppuccin" })

-- treesitter
use({
Expand Down

0 comments on commit 4d4eab2

Please sign in to comment.