From e7a06b748dc00e404e6ce78f80f8b624dacec9fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Fri, 4 Jun 2021 12:15:25 +0200 Subject: [PATCH] Add godotscript style settings to vim --- symlinks/config/nvim/after/ftplugin/gdscript.vim | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 symlinks/config/nvim/after/ftplugin/gdscript.vim diff --git a/symlinks/config/nvim/after/ftplugin/gdscript.vim b/symlinks/config/nvim/after/ftplugin/gdscript.vim new file mode 100644 index 0000000..f068acf --- /dev/null +++ b/symlinks/config/nvim/after/ftplugin/gdscript.vim @@ -0,0 +1,7 @@ +setlocal foldmethod=expr +setlocal tabstop=4 +nnoremap :GodotRunLast +nnoremap :GodotRun +nnoremap :GodotRunCurrent +nnoremap :GodotRunFZF +let b:undo_ftplugin .= '|setlocal foldmethod< tabstop<'