summaryrefslogtreecommitdiff
path: root/lua/plugins/theme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/theme.lua')
-rw-r--r--lua/plugins/theme.lua19
1 files changed, 19 insertions, 0 deletions
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,
+}