diff options
author | David Runge <dave@sleepmap.de> | 2016-08-09 20:52:51 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-08-09 20:52:51 +0200 |
commit | ff58c246fbc65b03da3ce6ee3112fd9945940e39 (patch) | |
tree | 3043f8786dad87c52501505350d1df72ba5e219c | |
parent | 0cb4bf9a439a2a373346c26fa705bcf02c6adb56 (diff) | |
download | dotfiles-ff58c246fbc65b03da3ce6ee3112fd9945940e39.tar.gz dotfiles-ff58c246fbc65b03da3ce6ee3112fd9945940e39.tar.bz2 dotfiles-ff58c246fbc65b03da3ce6ee3112fd9945940e39.tar.xz dotfiles-ff58c246fbc65b03da3ce6ee3112fd9945940e39.zip |
.scvimrc: Using horizontal split in tmux. Removing old trash from ftplugin identifiers. Using SClangStart only on scd files.
-rw-r--r-- | .scvimrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 ====================== |