summaryrefslogtreecommitdiff
path: root/lua/plugins/colorscheme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/colorscheme.lua')
-rw-r--r--lua/plugins/colorscheme.lua176
1 files changed, 90 insertions, 86 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
index 48f327b..5aeec35 100644
--- a/lua/plugins/colorscheme.lua
+++ b/lua/plugins/colorscheme.lua
@@ -1,88 +1,92 @@
return {
- { -- No nonsense, very stoic
- "aktersnurra/no-clown-fiesta.nvim",
- dependencies = {
- { "nvim-treesitter/nvim-treesitter",
- build = ":TSUpdate",
- config = function()
- local configs = require("nvim-treesitter.configs")
----@diagnostic disable-next-line: missing-fields
- configs.setup({
- -- List of languages in-> :h
- ensure_installed = {
- "c",
- "go",
- "bash",
- "lua",
- "python",
- "vim",
- "vimdoc",
- "gitignore",
- "mermaid",
- "markdown",
- "rnoweb",
- "r",
- "rust",
- "dockerfile",
- "graphql",
- "yaml",
- "json",
- "xml",
- "sxhkdrc",
- "zathurarc",
- },
- ignore_install = {
- "javascript", "typescript"
- },
- sync_install = false,
- highlight = {enable = true},
- indent = {enable = false},
- additional_vim_regex_highlighting = false,
- })
- end,
- },
- },
- lazy = false,
- priority = 1000,
- config = function()
- require("no-clown-fiesta").setup({
- transparent = true,
- styles = {
- -- You can set any of the style values specified for `:h nvim_set_hl`
- type = { bold = true },
- lsp = { underline = true },
- keywords = { italic = true },
- },
- })
- local fullbg = "#111a1f"
- vim.cmd.colorscheme('no-clown-fiesta')
- vim.api.nvim_set_hl(0,"LineNr",{fg="#727272"})
- -- vim.api.nvim_set_hl(0,"Visual",{bg="#171717"})
- -- vim.api.nvim_set_hl(0,"Visual",{bg="#829e9c"})
- vim.api.nvim_set_hl(0,"@markup.strong",{bold=true})
- vim.api.nvim_set_hl(0,"Visual",{bg="#84493b"})
- vim.api.nvim_set_hl(0,"Folded",{bg="none"})
- vim.api.nvim_set_hl(0,"VertSplit",{bg="none",fg="#727272"})
- vim.api.nvim_set_hl(0,"WinSeparator",{bg="none",fg="#727272"})
- vim.api.nvim_set_hl(0,"StatusLine",{bg="none",fg="#727272"})
- vim.api.nvim_set_hl(0,"LazyNormal",{bg=fullbg})
- -- vim.api.nvim_set_hl(0,"MasonNormal",{bg=fullbg})
- vim.api.nvim_set_hl(0,"NormalFloat",{bg=fullbg})
- vim.api.nvim_set_hl(0,"FloatBorder",{bg="none",fg=fullbg})
- end,
- }, {
- "neanias/everforest-nvim",
- version = false,
- priority = 1000,
- config = function()
- require("everforest").setup({
- background = "hard",
- transparent_background_level=2
- })
- end,
- }, {
- "ChausseBenjamin/friffle-vim",
- version = false,
- priority = 1000,
- }
+ { -- No nonsense, very stoic
+ "aktersnurra/no-clown-fiesta.nvim",
+ dependencies = {
+ {
+ "nvim-treesitter/nvim-treesitter",
+ build = ":TSUpdate",
+ config = function()
+ local configs = require("nvim-treesitter.configs")
+ ---@diagnostic disable-next-line: missing-fields
+ configs.setup({
+ -- List of languages in-> :h
+ ensure_installed = {
+ "c",
+ "go",
+ "bash",
+ "lua",
+ "python",
+ "vim",
+ "vimdoc",
+ "gitignore",
+ "mermaid",
+ "markdown",
+ "rnoweb",
+ "r",
+ "rust",
+ "dockerfile",
+ "graphql",
+ "yaml",
+ "json",
+ "xml",
+ "sxhkdrc",
+ "zathurarc",
+ },
+ ignore_install = {
+ "javascript",
+ "typescript",
+ },
+ sync_install = false,
+ highlight = { enable = true },
+ indent = { enable = false },
+ additional_vim_regex_highlighting = false,
+ })
+ end,
+ },
+ },
+ lazy = false,
+ priority = 1000,
+ config = function()
+ require("no-clown-fiesta").setup({
+ transparent = true,
+ styles = {
+ -- You can set any of the style values specified for `:h nvim_set_hl`
+ type = { bold = true },
+ lsp = { underline = true },
+ keywords = { italic = true },
+ },
+ })
+ local fullbg = "#111a1f"
+ vim.cmd.colorscheme("no-clown-fiesta")
+ vim.api.nvim_set_hl(0, "LineNr", { fg = "#727272" })
+ -- vim.api.nvim_set_hl(0,"Visual",{bg="#171717"})
+ -- vim.api.nvim_set_hl(0,"Visual",{bg="#829e9c"})
+ vim.api.nvim_set_hl(0, "@markup.strong", { bold = true })
+ vim.api.nvim_set_hl(0, "Visual", { bg = "#84493b" })
+ vim.api.nvim_set_hl(0, "Folded", { bg = "none" })
+ vim.api.nvim_set_hl(0, "VertSplit", { bg = "none", fg = "#727272" })
+ vim.api.nvim_set_hl(0, "WinSeparator", { bg = "none", fg = "#727272" })
+ vim.api.nvim_set_hl(0, "StatusLine", { bg = "none", fg = "#727272" })
+ vim.api.nvim_set_hl(0, "LazyNormal", { bg = fullbg })
+ -- vim.api.nvim_set_hl(0,"MasonNormal",{bg=fullbg})
+ vim.api.nvim_set_hl(0, "NormalFloat", { bg = fullbg })
+ vim.api.nvim_set_hl(0, "FloatBorder", { bg = "none", fg = fullbg })
+ end,
+ },
+ {
+ "neanias/everforest-nvim",
+ version = false,
+ priority = 1000,
+ config = function()
+ require("everforest").setup({
+ background = "hard",
+ transparent_background_level = 2,
+ })
+ end,
+ },
+ {
+ "ChausseBenjamin/friffle-vim",
+ version = false,
+ priority = 1000,
+ },
}