aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.scvimrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/.scvimrc b/.scvimrc
index 7e974a2..c9af8b0 100644
--- a/.scvimrc
+++ b/.scvimrc
@@ -3,24 +3,24 @@ let g:sclangTerm = "urxvt -e"
let g:sclangPipeLoc = "/tmp/sclang-pipe"
let g:sclangPipeAppPidLoc = "/tmp/sclangpipe_app-pid"
" Set 1 to split scvim in tmux and screen vertically, 0 for horizontally
-let g:scvimSplitVertical = 1
+let g:scvimSplitVertical = 0
" Set the size of the sclang output split in lines or blocks (only for scvim opened in screen and
" tmux). This setting applies vertically or horizontally, depending on
" g:scvimSplitVertical
let g:scvimSplitSize = 25
au BufWinEnter,BufNewFile,BufRead *.sc set filetype=supercollider
-au BufWinEnter,BufNewFile,BufRead *.sc let &iskeyword="@,48-57,_,192-255" | runtime ftplugin/supercollider.vim
+au BufWinEnter,BufNewFile,BufRead *.sc runtime ftplugin/supercollider.vim
au BufWinEnter,BufNewFile,BufRead *.sc set sw=2 ts=2 autoindent "this line can be changed however you like
"scd files: on open set runtimepath and start sclang
au BufWinEnter,BufNewFile,BufRead *.scd set runtimepath+=/usr/share/vim/addons/ filetype=supercollider
-au BufWinEnter,BufNewFile,BufRead *.scd let &iskeyword="@,48-57,_,192-255,-,|" | runtime ftplugin/supercollider.vim | SClangStart
+au BufWinEnter,BufNewFile,BufRead *.scd runtime ftplugin/supercollider.vim | SClangStart
au BufWinEnter,BufNewFile,BufRead *.scd set sw=2 ts=2 autoindent
"sc help files
au BufWinEnter,BufNewFile,BufRead *.schelp set filetype=supercollider
-au BufWinEnter,BufNewFile,BufRead *.schelp let &iskeyword="@,48-57,_,192-255,-,|" | runtime ftplugin/supercollider.vim
+au BufWinEnter,BufNewFile,BufRead *.schelp runtime ftplugin/supercollider.vim
au BufWinEnter,BufNewFile,BufRead *.schelp set sw=2 ts=2 autoindent "this line can be changed however you like
" ================ Indentation ======================