aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-05-17 11:08:09 +0200
committerDavid Runge <david.runge@frqrec.com>2014-05-17 11:08:09 +0200
commit584c61032b25712556854074d70706b607a474a1 (patch)
tree5597c39b6d0e7beb47114c8213f9704c5516ed95
parent90b2eb67622b56f5ca449f4cdc2ce325fb5828bb (diff)
downloaddotfiles-584c61032b25712556854074d70706b607a474a1.tar.gz
dotfiles-584c61032b25712556854074d70706b607a474a1.tar.bz2
dotfiles-584c61032b25712556854074d70706b607a474a1.tar.xz
dotfiles-584c61032b25712556854074d70706b607a474a1.zip
Adding settings for my version of scvim, to be able to configure split-size and split orientation of the sclang output when using scvim in tmux and screen
-rw-r--r--.scvimrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/.scvimrc b/.scvimrc
index 1c1809d..67fb207 100644
--- a/.scvimrc
+++ b/.scvimrc
@@ -2,6 +2,12 @@ let g:sclangKillOnExit = 1
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
+" 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