diff --git a/init.lua b/init.lua index 0824b289..bb63c3ac 100644 --- a/init.lua +++ b/init.lua @@ -138,6 +138,13 @@ require('lazy').setup({ }, }, + { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = {}, + }, + { -- Theme inspired by Atom 'navarasu/onedark.nvim', @@ -154,7 +161,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'tokyonight', component_separators = '|', section_separators = '', }, @@ -220,6 +227,20 @@ require('lazy').setup({ { import = 'custom.plugins' }, }, {}) +-- Configure Glow +require('glow').setup({ + style = 'dark', + install_path = os.getenv("GLOW_PATH") +}) + +-- Configure Theme +require('tokyonight').setup({ + style = 'night', + terminal_colors = true, + sidebars = { 'qf', 'vista_kind', 'terminal', 'packer' }, +}) +vim.cmd.colorscheme 'tokyonight' + -- [[ Setting options ]] -- See `:help vim.o` -- NOTE: You can change these options as you wish! diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 4ccc6fc1..143fbe19 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -23,5 +23,10 @@ return { }, { 'ThePrimeagen/harpoon' + }, + { + "ellisonleao/glow.nvim", + config = true, + cmd = "Glow" } }