diff --git a/after/plugin/neo-tree.lua b/after/plugin/neo-tree.lua index f4635858..69fb76ff 100644 --- a/after/plugin/neo-tree.lua +++ b/after/plugin/neo-tree.lua @@ -1,8 +1,8 @@ -- Autocmd to open Neo-tree automatically on startup -vim.api.nvim_create_autocmd("VimEnter", { - callback = function() - if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then - require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() }) - end - end -}) +-- vim.api.nvim_create_autocmd("VimEnter", { +-- callback = function() +-- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then +-- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() }) +-- end +-- end +-- }) diff --git a/lua/custom/plugins/colorschemes.lua b/lua/custom/plugins/colorschemes.lua index 78991168..97f895aa 100644 --- a/lua/custom/plugins/colorschemes.lua +++ b/lua/custom/plugins/colorschemes.lua @@ -6,7 +6,7 @@ return { config = function() vim.cmd.colorscheme 'gruvbox-material' end, - enabled = true, + enabled = false, }, { @@ -84,4 +84,30 @@ return { end, enabled = false, }, + + { + "vague2k/vague.nvim", + lazy = false, + priority = 1000, + config = function() + vim.opt.termguicolors = true + vim.cmd.colorscheme 'vague' + end, + enabled = false, + }, + + { + 'projekt0n/github-nvim-theme', + name = 'github-theme', + lazy = false, -- make sure we load this during startup if it is your main colorscheme + priority = 1000, -- make sure to load this before all the other start plugins + config = function() + require('github-theme').setup({ + -- ... + }) + + vim.cmd('colorscheme github_dark_dimmed') + end, + enabled = true, + } }