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

9 lines
296 B
VimL
Raw Normal View History

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