remove nvimtree statusline

This commit is contained in:
christianchiarulli 2021-07-11 22:38:14 -04:00
parent 1dfad4d233
commit 2a1fb08a64

View file

@ -17,3 +17,9 @@ require "lv-treesitter"
-- end -- end
-- if O.lang.tailwindcss.active then -- if O.lang.tailwindcss.active then
-- require "lsp.tailwind -- require "lsp.tailwind
vim.api.nvim_exec(
[[
au BufEnter,BufWinEnter,WinEnter,CmdwinEnter * if bufname('%') == "NvimTree" | set laststatus=0 | else | set laststatus=2 | endif
]],
false
)