diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-06-05 20:36:35 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-06-05 20:36:35 +0530 |
commit | 9f2a47f95a3c9af33b30e61992f5e74ec9782c05 (patch) | |
tree | a36c8575bacb2e05159b5b6deccdee4b7cc9fce5 | |
parent | 7d1455b0b4abbab11a524934540b632e16966dfc (diff) |
nvim: colorscheme: using oxycarbon colorscheme
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | lua/core/colorscheme.lua | 67 |
1 files changed, 1 insertions, 66 deletions
diff --git a/lua/core/colorscheme.lua b/lua/core/colorscheme.lua index 38745c3..8e70e71 100644 --- a/lua/core/colorscheme.lua +++ b/lua/core/colorscheme.lua @@ -1,67 +1,2 @@ -- Default options: -require("catppuccin").setup({ - flavour = "macchiato", -- latte, frappe, macchiato, mocha - background = { -- :h background - light = "latte", - dark = "macchiato", - }, - transparent_background = false, - show_end_of_buffer = false, -- show the '~' characters after the end of buffers - term_colors = true, - dim_inactive = { - enabled = false, - shade = "dark", - percentage = 0.15, - }, - no_italic = false, -- Force no italic - no_bold = false, -- Force no bold - styles = { - comments = { "italic" }, - conditionals = { "italic" }, - loops = {}, - functions = {}, - keywords = {}, - strings = {}, - variables = {}, - numbers = {}, - booleans = {}, - properties = {}, - types = {}, - operators = {}, - }, - color_overrides = {}, - custom_highlights = {}, - integrations = { - cmp = true, - gitsigns = true, - nvimtree = true, - telescope = true, - treesitter = true, - markdown = true, - gitsigns = true, - notify = false, - mini = false, - -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations) - native_lsp = { - enabled = true, - virtual_text = { - errors = { "italic" }, - hints = { "italic" }, - warnings = { "italic" }, - information = { "italic" }, - }, - underlines = { - errors = { "underline" }, - hints = { "underline" }, - warnings = { "underline" }, - information = { "underline" }, - }, - }, - }, -}) -vim.api.nvim_create_autocmd('ColorScheme', { - callback = function () - vim.api.nvim_set_hl(0, '@lsp.type.comment.c', {fg='Grey'}) - end -}) -vim.cmd[[colorscheme catppuccin]] +vim.cmd.colorscheme "oxocarbon" |