diff --git a/dot_config/nvim/lua/plugins/colorscheme.lua b/dot_config/nvim/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..ac0584d --- /dev/null +++ b/dot_config/nvim/lua/plugins/colorscheme.lua @@ -0,0 +1,13 @@ +return { + { + "shaunsingh/nord.nvim", + lazy = false, + priority = 1000, + }, + { + "LazyVim/LazyVim", + opts = { + colorscheme = "nord", + }, + }, +} diff --git a/dot_config/nvim/lua/plugins/colorscheme.lua.tmpl b/dot_config/nvim/lua/plugins/colorscheme.lua.tmpl deleted file mode 100644 index b4b60d8..0000000 --- a/dot_config/nvim/lua/plugins/colorscheme.lua.tmpl +++ /dev/null @@ -1,51 +0,0 @@ -return { - -- gruvbox - { - "ellisonleao/gruvbox.nvim", - lazy = true, - opts = { contrast = "hard" }, - }, - -- kanagawa - { - "rebelot/kanagawa.nvim", - lazy = true, - }, -{{- if eq .chezmoi.os "openbsd" }} - { - "gbprod/nord.nvim", - lazy = false, - priority = 1000, - opts = { - styles = { - comments = { italic = true }, - keywords = { bold = true }, - functions = { bold = true }, - variables = {}, - }, - }, - config = function() - vim.cmd([[colorscheme nord]]) - end, - }, -{{- else }} - { - "gbprod/nord.nvim", - lazy = false, - priority = 1000, - opts = { - styles = { - comments = { italic = true }, - keywords = { bold = true }, - functions = { bold = true }, - variables = {}, - }, - }, - }, - { - "LazyVim/LazyVim", - opts = { - colorscheme = "nord", - }, - }, -{{- end }} -}