summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2022-11-07 12:37:20 +0530
committerlistout <listout@protonmail.com>2022-11-07 12:37:20 +0530
commita8233637406a513b8038a253a55460b0d7c126c4 (patch)
tree24b381738d4d9ac51added7a7f6de1a3ab111a36 /lua
parentba786f399d09a5f3396271b30e5289a5c9461ec8 (diff)
nvim: colorscheme.lua plugins.lua: moving to oh-lucy color scheme
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/core/colorscheme.lua41
-rw-r--r--lua/plugins/plugins.lua2
2 files changed, 2 insertions, 41 deletions
diff --git a/lua/core/colorscheme.lua b/lua/core/colorscheme.lua
index 7b0a465..ebda145 100644
--- a/lua/core/colorscheme.lua
+++ b/lua/core/colorscheme.lua
@@ -1,41 +1,2 @@
-- Config in lua
-require("catppuccin").setup({
- flavour = "frappe", -- latte, frappe, macchiato, mocha
- background = { -- :h background
- light = "latte",
- dark = "frappe",
- },
- compile_path = vim.fn.stdpath("cache") .. "/catppuccin",
- transparent_background = false,
- term_colors = true,
- dim_inactive = {
- enabled = false,
- shade = "dark",
- percentage = 0.15,
- },
- 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,
- -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
- },
-})
-vim.api.nvim_command "colorscheme catppuccin"
+vim.cmd[[colorscheme oh-lucy]]
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua
index 8e6561e..868c3bd 100644
--- a/lua/plugins/plugins.lua
+++ b/lua/plugins/plugins.lua
@@ -34,7 +34,7 @@ return packer.startup(function(use)
use 'wbthomason/packer.nvim'
-- Color scheme
- use 'catppuccin/nvim'
+ use 'Yazeed1s/oh-lucy.nvim'
-- File tree
use 'nvim-tree/nvim-tree.lua'