summaryrefslogtreecommitdiff
path: root/lua/theme.lua
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2023-04-02 17:44:43 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2023-04-02 17:44:43 +0200
commit65f0046083b6239bdd76a81af63e3cad4516c75a (patch)
tree46677f49f4d34e40f6a0c8ae87732823c836f6c6 /lua/theme.lua
Initial commit
Diffstat (limited to 'lua/theme.lua')
-rw-r--r--lua/theme.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/lua/theme.lua b/lua/theme.lua
new file mode 100644
index 0000000..d8d2475
--- /dev/null
+++ b/lua/theme.lua
@@ -0,0 +1,21 @@
+vim.o.background = "dark"
+
+local c = require("vscode.colors").get_colors()
+require("vscode").setup({
+ style = "dark",
+ group_overrides = {
+ ["@punctuation.bracket"] = { fg = c.vscFront },
+ },
+})
+
+vim.cmd.colorscheme("vscode")
+
+require("lualine").setup({
+ options = {
+ theme = "vscode",
+ icons_enabled = false,
+ component_separators = "|",
+ section_separators = "",
+ },
+})
+