summaryrefslogtreecommitdiff
path: root/lua/plugins/colorscheme.lua
blob: 26231b54ea5615e5df8ddf508f65ed67f93dc52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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")
        configs.setup({
          ensure_installed = {
            "c", "go", "python", "yaml", "json", "lua", "vim", "graphql"
          },
          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 },
      },
    })
    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,"Visual",{bg="#84493b"})
    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"})
  end,
}