From 169ab2f6020c7d56c5ccf809a10a0e38e2b0ac9c Mon Sep 17 00:00:00 2001 From: nirenjan Date: Fri, 8 Oct 2021 09:42:13 -0700 Subject: [PATCH] Add Golang editor settings --- ftplugin/go.vim | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ftplugin/go.vim diff --git a/ftplugin/go.vim b/ftplugin/go.vim new file mode 100644 index 0000000..c4d9d7e --- /dev/null +++ b/ftplugin/go.vim @@ -0,0 +1,10 @@ +" File: go.vim +" Author: Nirenjan Krishnan +" Description: Golang editing settings +" Last Modified: April 20, 2020 + +setlocal tabstop=4 +setlocal softtabstop=4 +setlocal shiftwidth=4 +setlocal noexpandtab +