diff options
Diffstat (limited to 'after/ftplugin/javascript.vim')
| -rw-r--r-- | after/ftplugin/javascript.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/after/ftplugin/javascript.vim b/after/ftplugin/javascript.vim new file mode 100644 index 0000000..c629428 --- /dev/null +++ b/after/ftplugin/javascript.vim @@ -0,0 +1,8 @@ +" Disable inserting comment leader after hitting o or O or <Enter> +set formatoptions-=o +set formatoptions-=r + +set tabstop=2 " number of visual spaces per TAB +set softtabstop=2 " number of spaces in tab when editing +set shiftwidth=2 " number of spaces to use for autoindent +set expandtab " expand tab to spaces so that tabs are spaces |
