From 85a2938129b0b3d22805b625debdde877b71c320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Mon, 5 Jul 2021 20:02:05 +0200 Subject: [PATCH] Add tab width for gdscript --- symlinks/config/nvim/after/ftplugin/gdscript.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/symlinks/config/nvim/after/ftplugin/gdscript.vim b/symlinks/config/nvim/after/ftplugin/gdscript.vim index f068acf..a2fcbec 100644 --- a/symlinks/config/nvim/after/ftplugin/gdscript.vim +++ b/symlinks/config/nvim/after/ftplugin/gdscript.vim @@ -1,7 +1,8 @@ setlocal foldmethod=expr setlocal tabstop=4 +setlocal shiftwidth=4 nnoremap :GodotRunLast nnoremap :GodotRun nnoremap :GodotRunCurrent nnoremap :GodotRunFZF -let b:undo_ftplugin .= '|setlocal foldmethod< tabstop<' +let b:undo_ftplugin .= '|setlocal foldmethod< tabstop< shiftwidth<'