diff --git a/after/plugin/neo-tree.lua b/after/plugin/neo-tree.lua index 1204dc83..6a6261ed 100644 --- a/after/plugin/neo-tree.lua +++ b/after/plugin/neo-tree.lua @@ -1,10 +1,10 @@ -- 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() }) - vim.cmd('wincmd p') -- Switch back to the previous buffer - 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() }) +-- vim.cmd('wincmd p') -- Switch back to the previous buffer +-- end +-- end +-- }) diff --git a/init.lua b/init.lua index 41fb4e1a..38cb48b5 100644 --- a/init.lua +++ b/init.lua @@ -855,7 +855,7 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - -- vim.cmd.colorscheme 'tokyonight' + vim.cmd.colorscheme 'tokyonight-night' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' diff --git a/lua/custom/plugins/colorschemes.lua b/lua/custom/plugins/colorschemes.lua index 655a2961..6a4c3b85 100644 --- a/lua/custom/plugins/colorschemes.lua +++ b/lua/custom/plugins/colorschemes.lua @@ -5,7 +5,8 @@ return { priority = 1000, config = function () vim.cmd.colorscheme 'gruvbuddy' - end + end, + enabled = false, }, {