diff --git a/init.lua b/init.lua index 5a99a44..abdc7d5 100644 --- a/init.lua +++ b/init.lua @@ -35,14 +35,15 @@ vim.g.have_nerd_font = false -- # STARTUP SCRIPT vim.cmd ':cd %:h' -- set local directory when opening nvim --- vim.cmd ("Explore") ---vim.cmd 'Lexplore' -- netRW settings -- set netrw style to tree by default vim.g.netrw_liststyle = 3 vim.g.netrw_banner = 1 vim.g.netrw_altv = 1 -- Create the split of the Netrw window to the left +vim.g.netrw_winsize = 30 -- Set the width of the "drawer" +vim.g.netrw_browse_split = 4 -- Open files in previous window. This emulates the typical "drawer" behaviorkjk +vim.g.netrw_altv = 1 -- Create the split of the Netrw window to the left --vim.cmd(':Lexplore %:p:h') -- Use this to open the local directory diff --git a/lua/custom/plugins/termhere.lua b/lua/custom/plugins/termhere.lua new file mode 100644 index 0000000..960e88a --- /dev/null +++ b/lua/custom/plugins/termhere.lua @@ -0,0 +1,3 @@ +return { + 'TamaMcGlinn/vim-termhere', +}