14 lines
503 B
Lua
14 lines
503 B
Lua
-- AutoCMD:
|
|
--vim.cmd([[
|
|
-- stuff
|
|
-- stuff
|
|
--]])
|
|
|
|
-- Open a file from its last left off position
|
|
vim.cmd [[ au BufReadPost * if expand('%:p') !~# '\m/\.git/' && line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif ]]
|
|
|
|
-- uncomment this if you want to open nvim with a dir
|
|
vim.cmd [[ autocmd BufEnter * if &buftype != "terminal" | lcd %:p:h | endif ]]
|
|
|
|
-- File extension specific tabbing
|
|
vim.cmd [[ autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 ]]
|