aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/colorscheme.lua
blob: f2257894482299ca084d3ec016dad4c93f435b09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
local colorscheme = {
    lazy = false,
    priority = 1000
}

local catpuccin = {
    "catppuccin/nvim" ,
    name = "catpuccin",
    config = function()
        vim.cmd[[colorscheme catppuccin-mocha]]
    end
}

local tokyonight = {
    'folke/tokyonight.nvim',
    name = 'tokyonight',
    config = function()
        vim.cmd[[colorscheme tokyonight-night]]
    end
}

-- combine default colorscheme settings with selected theme
return vim.tbl_extend('force', colorscheme, catpuccin)