dotfiles/symlinks/config/nvim/after/ftplugin/gdscript.vim

9 lines
296 B
VimL
Raw Normal View History

2021-06-04 10:15:25 +00:00
setlocal foldmethod=expr
setlocal tabstop=4
2021-07-05 18:02:05 +00:00
setlocal shiftwidth=4
2021-06-04 10:15:25 +00:00
nnoremap <buffer> <F4> :GodotRunLast<CR>
nnoremap <buffer> <F5> :GodotRun<CR>
nnoremap <buffer> <F6> :GodotRunCurrent<CR>
nnoremap <buffer> <F7> :GodotRunFZF<CR>
2021-07-05 18:02:05 +00:00
let b:undo_ftplugin .= '|setlocal foldmethod< tabstop< shiftwidth<'