diff options
author | Teddy Wing | 2015-07-11 16:27:34 -0400 |
---|---|---|
committer | Teddy Wing | 2015-07-11 16:30:54 -0400 |
commit | 337206ec66336060c39813a536c2dc276175fcb5 (patch) | |
tree | bcbe37edb5ecce0871bc5da8badbebdd18125cc5 | |
parent | 804f60a731caa69915414cbd7993e3ea1ef2f2e0 (diff) | |
download | dotvim-337206ec66336060c39813a536c2dc276175fcb5.tar.bz2 |
vimrc: Disable auditory.vim
Wish there was an easy way to toggle the plugin on and off with a
command in the plugin (e.g. `:AuditoryToggle`). Would be nice to enable
it when I wanted to and have it disabled at other times. I like it but
there are times when I don't want my computer to be playing music when
I'm typing or editing text. Disable it by default.
-rw-r--r-- | vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -300,6 +300,7 @@ " * Remove CopyModeToggle command since I don't use it and it doesn't " really work. " * Remove Autocommands section as it's not used. +" * Disable auditory.vim " @@ -476,6 +477,10 @@ let g:netrw_winsize = '' " Use default window size let g:netrw_sort_options = 'i' " Case-insensitive sort +" Auditory +let g:loaded_auditory = 1 + + " Source matchit for expanded % matching runtime! macros/matchit.vim |