vim.api.nvim_exec([[ set fillchars=eob:\ tnoremap " start terminal in insert mode au BufEnter * if &buftype == 'terminal' | :startinsert | endif " open terminal on the bottom function! OpenTerminal() split term://bash resize 10 endfunction nnoremap :call OpenTerminal() nnoremap :vnew term://bash set ignorecase set noswapfile set title set shortmess+=c set updatetime=250 "for gitsigns" " new tab and switching between em nnoremap : tabnew nnoremap : tabp nnoremap : tabn map k map j map l map h inoremap kk let g:indentLine_enabled = 3 let g:indentLine_char_list = ['▏'] norm! gg=G set expandtab sw=2 ]])