summaryrefslogtreecommitdiff
path: root/plugin/theme.lua
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-08-04 09:05:04 +0200
committerhozan23 <hozan23@karyontech.net>2024-08-04 09:05:04 +0200
commit5e774de1f40616cd4fec2f600a5f2b99612e028b (patch)
tree0ab344a4ea34416a45e7cb33b26a3a11e013495d /plugin/theme.lua
init commitHEADmaster
Diffstat (limited to 'plugin/theme.lua')
-rw-r--r--plugin/theme.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugin/theme.lua b/plugin/theme.lua
new file mode 100644
index 0000000..9db4940
--- /dev/null
+++ b/plugin/theme.lua
@@ -0,0 +1,19 @@
+--------------------------
+-- Gruvbox Theme
+--------------------------
+require("gruvbox").setup({
+ palette_overrides = {
+ dark0 = "#181818",
+ dark1 = "#202020",
+ dark2 = "#282828",
+ dark3 = "#383838",
+ dark4 = "#484848",
+ }
+})
+vim.o.background = "dark" -- or "light" for light mode
+vim.cmd([[colorscheme gruvbox]])
+
+--------------------------
+-- Airline theme
+--------------------------
+vim.g.airline_theme = "base16_black_metal_mayhem"