File tree Expand file tree Collapse file tree 3 files changed +23
-10
lines changed
Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 11-- Autocmd to open Neo-tree automatically on startup
2- vim .api .nvim_create_autocmd (" VimEnter" , {
3- callback = function ()
4- if vim .fn .isdirectory (vim .fn .getcwd ()) == 1 then
5- require (' neo-tree.command' ).execute ({ toggle = false , dir = vim .loop .cwd () })
6- vim .cmd (' wincmd p' ) -- Switch back to the previous buffer
7- end
8- end
9- })
2+ -- vim.api.nvim_create_autocmd("VimEnter", {
3+ -- callback = function()
4+ -- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
5+ -- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
6+ -- vim.cmd('wincmd p') -- Switch back to the previous buffer
7+ -- end
8+ -- end
9+ -- })
1010
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ return {
3636 config = function ()
3737 vim .cmd .colorscheme ' gruvbox-material'
3838 end ,
39- enabled = true ,
39+ enabled = false ,
4040 },
4141
4242 {
@@ -168,5 +168,18 @@ return {
168168 vim .cmd .colorscheme ' gruber-darker'
169169 end ,
170170 enabled = false ,
171+ },
172+
173+ {
174+ ' olivercederborg/poimandres.nvim' ,
175+ lazy = false ,
176+ priority = 1000 ,
177+ config = function ()
178+ require (' poimandres' ).setup {
179+ -- leave this setup function empty for default config
180+ -- or refer to the configuration section
181+ -- for configuration options
182+ }
183+ end ,
171184 }
172185}
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ return {
155155
156156 {
157157 " echasnovski/mini.starter" ,
158- enabled = false ,
158+ enabled = true ,
159159 config = function ()
160160 require (' mini.starter' ).setup ({
161161 -- Define the header
You can’t perform that action at this time.
0 commit comments