From 0d785cd9f3a7903c84846cee64e3c46ebb56ff64 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Mon, 21 Aug 2023 14:35:06 -0600 Subject: add folding, change colorscheme --- lua/plugins/theme.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/plugins/theme.lua (limited to 'lua/plugins/theme.lua') diff --git a/lua/plugins/theme.lua b/lua/plugins/theme.lua new file mode 100644 index 0000000..cf01947 --- /dev/null +++ b/lua/plugins/theme.lua @@ -0,0 +1,19 @@ +return { + 'shaunsingh/nord.nvim', + lazy = false, + priority = 1000, + opts = {}, + config = function() + vim.g.nord_contrast = true + vim.g.nord_borders = true + vim.g.nord_disable_background = false + vim.g.nord_cursorline_transparent = false + vim.g.nord_enable_sidebar_background = false + vim.g.nord_italic = false + vim.g.nord_uniform_diff_background = true + vim.g.nord_bold = false + + require('nord').set() + -- vim.cmd.colorscheme = 'nord' + end, +} -- cgit v1.2.3-54-g00ecf