diff options
author | Josh Rahm <rahm@google.com> | 2023-01-20 21:31:44 +0000 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2023-01-20 21:31:44 +0000 |
commit | 79fbfe964e3770ffec7c60bd2a6ed326e92504b5 (patch) | |
tree | 328fd6b65ac5f623e2d0dddfaa73b6c40a1207a7 | |
parent | a12ca1d09996abf37415c119be06c48b73067adf (diff) | |
download | config.vim-79fbfe964e3770ffec7c60bd2a6ed326e92504b5.tar.gz config.vim-79fbfe964e3770ffec7c60bd2a6ed326e92504b5.tar.bz2 config.vim-79fbfe964e3770ffec7c60bd2a6ed326e92504b5.zip |
ftplugin/java.vim: dont clobber global settings
-rw-r--r-- | ftplugin/java.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftplugin/java.vim b/ftplugin/java.vim index 1d29aa3..8051b69 100644 --- a/ftplugin/java.vim +++ b/ftplugin/java.vim @@ -1,5 +1,5 @@ if &colorcolumn != "" - set colorcolumn=101 + setl colorcolumn=101 endif -set textwidth=100 +setl textwidth=100 |