diff options
| author | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-08-27 22:15:00 -0400 |
|---|---|---|
| committer | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-08-27 22:15:00 -0400 |
| commit | e61cea38a6f3d35a389d9236e632b0eeb14fa788 (patch) | |
| tree | 7d36ffeb741d8472bfd77ba1e07a6fa0f6336fa0 /nvim/lua/plugins/colorscheme.lua | |
| parent | effbea32afb26f365d81a5797b9c24bc6fd1aa81 (diff) | |
added completions for some languages
Diffstat (limited to 'nvim/lua/plugins/colorscheme.lua')
| -rw-r--r-- | nvim/lua/plugins/colorscheme.lua | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/nvim/lua/plugins/colorscheme.lua b/nvim/lua/plugins/colorscheme.lua index 6df2325..f225789 100644 --- a/nvim/lua/plugins/colorscheme.lua +++ b/nvim/lua/plugins/colorscheme.lua @@ -1,12 +1,23 @@ -return { - { - "catppuccin/nvim" , - name = "catpuccin", - enabled = true, - lazy = false, - priority = 1000, - config = function() - vim.cmd("colorscheme catppuccin-mocha") - end - }, +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) |
