From 8710f5fa25bccbb75c9bbdad6c9a4d1dc6cc4d5c Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sat, 6 Apr 2024 01:05:05 +0200 Subject: [PATCH] chore: put color option in theme file --- modules/home-manager/cli/neovim/files/options.lua | 1 - modules/home-manager/cli/neovim/files/theme.lua | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/cli/neovim/files/options.lua b/modules/home-manager/cli/neovim/files/options.lua index 193fe24..755cd91 100644 --- a/modules/home-manager/cli/neovim/files/options.lua +++ b/modules/home-manager/cli/neovim/files/options.lua @@ -35,7 +35,6 @@ vim.opt.showmatch = true vim.opt.smartcase = true -- search: try :to be smart about cases vim.opt.smartindent = true vim.opt.tabstop = 4 -vim.opt.termguicolors = true -- 24 bits color support vim.opt.wildmenu = true -- activate enhanced user menu vim.opt.wildmode = 'lastused:full,list' -- enhance menu vim.opt.pumheight = 10 diff --git a/modules/home-manager/cli/neovim/files/theme.lua b/modules/home-manager/cli/neovim/files/theme.lua index 307ca8e..d07346f 100644 --- a/modules/home-manager/cli/neovim/files/theme.lua +++ b/modules/home-manager/cli/neovim/files/theme.lua @@ -3,4 +3,5 @@ require("catppuccin").setup { neotree = true } } +vim.opt.termguicolors = true -- 24 bits color support vim.cmd.colorscheme "catppuccin"