summaryrefslogtreecommitdiff
path: root/lua/plugins/theme.lua
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-08-21 14:35:06 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-08-21 14:35:06 -0600
commit0d785cd9f3a7903c84846cee64e3c46ebb56ff64 (patch)
tree094e223f670fe9458783e3a77b0e6fcb70e70a94 /lua/plugins/theme.lua
parentaa1efd58367066722daffdcbb198bfd8758f55b9 (diff)
add folding, change colorscheme
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,
+}