From e648ce6d7d685d441b15785c0d2c33b68ba6a02e Mon Sep 17 00:00:00 2001 From: agryphus Date: Sat, 20 May 2023 23:43:25 -0400 Subject: [PATCH] Added new theme --- after/plugin/colors.lua | 17 ++++++++++++++++- lua/andrew/packer.lua | 3 ++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/after/plugin/colors.lua b/after/plugin/colors.lua index e4685b7..08838c0 100755 --- a/after/plugin/colors.lua +++ b/after/plugin/colors.lua @@ -1,7 +1,22 @@ vim.o.background = "dark" -local c = require("vscode.colors").get_colors() +require("vscode.colors").get_colors() require("vscode").setup({ transparent = true }) +require("no-clown-fiesta").setup({ + transparent = true, -- Enable this to disable the bg color + styles = { + -- You can set any of the style values specified for `:h nvim_set_hl` + comments = {}, + keywords = {}, + functions = {}, + variables = {}, + type = { bold = true }, + lsp = { underline = true } + }, +}) + +vim.cmd[[colorscheme no-clown-fiesta]] + diff --git a/lua/andrew/packer.lua b/lua/andrew/packer.lua index a3adca5..4cc30e6 100755 --- a/lua/andrew/packer.lua +++ b/lua/andrew/packer.lua @@ -12,11 +12,12 @@ return require("packer").startup(function(use) -- Treesittep use({"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}) - -- VSCode-like theme + -- Themes use { "Mofiqul/vscode.nvim", commit = "db9ee33" } + use "aktersnurra/no-clown-fiesta.nvim" -- Left-side file tree dispaly use {