✏️ Added mintabline to neovim

This commit is contained in:
z3rOR0ne 2022-12-11 17:19:49 -08:00
parent 3aaae907d4
commit 2ecdd4b73f
4 changed files with 8 additions and 2 deletions

View file

@ -397,6 +397,9 @@ vim.cmd[[command! -nargs=* FZFExplore call FzfExplore(shellescape(<q-args>))]]
-- fzf is on bottom of screen
vim.cmd[[let g:fzf_layout = { 'down': '~30%' }]]
-- max tab characters
vim.cmd[[let g:mintabline_tab_max_chars = 10 ]]
--Removes trailing spaces on save
vim.cmd[[autocmd FileWritePre * call TrimWhiteSpace()]]
vim.cmd[[autocmd FileAppendPre * call TrimWhiteSpace()]]