diff options
author | David Runge <dave@sleepmap.de> | 2016-08-16 16:05:08 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-08-16 16:05:08 +0200 |
commit | 5398090beb583efb86717010f90ebdf2552c4b94 (patch) | |
tree | a550fa866f8ba0c66296888031298582ff3781d3 /.scvimrc | |
parent | a24212e200da85e91c20d3f7c6631a19b4bab04f (diff) | |
parent | 30d3a2fdefce354b65019226ba1762b0403b8439 (diff) | |
download | dotfiles-5398090beb583efb86717010f90ebdf2552c4b94.tar.gz dotfiles-5398090beb583efb86717010f90ebdf2552c4b94.tar.bz2 dotfiles-5398090beb583efb86717010f90ebdf2552c4b94.tar.xz dotfiles-5398090beb583efb86717010f90ebdf2552c4b94.zip |
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles: (28 commits)
.config/qtile/config.py: Disabling broken TreeTab layout. Adding scide to dev. Changing background picture to lowercase. Enabling notification widget.
.zsh.after/aliases.zsh: Adding automatic selection of audio backends for mpv.
bin/set_volume: Adding further increase/decrease shortcuts.
.scvimrc: Adding system runtimepath for .sc files.
.config/mpd/mpd-trvlr-jack.conf: Adding mpd configuration for trvlr using JACK.
.config/mpd/mpd-trvlr.conf: Adding mpd configuration for trlvr.
.config/mpd/mpd.conf: Switching audio backend to JACK in default mpd config.
.config/conky/side: Removing broken xft settings.
.config/compton.conf
.config/SuperCollider/startupfiles/rme_fireface800.scd: Removing obsolete configurations.
.config/SuperCollider/startup.scd: Adding a generic startupFile for SuperCollider.
.gitignore: Unignoring SuperCollider's startup file.
.processing/preferences.txt: Removing configuration due to constant regneration and metadata leakage.
.config/patchagerc: Removing useless configuration.
.config/SuperCollider/sc_ide_conf.yaml: Removing redundant sc_ide_conf.yaml.
.arduino/preferences.txt: Removing arduino preferences due to redundancy.
.scvimrc: Using horizontal split in tmux. Removing old trash from ftplugin identifiers. Using SClangStart only on scd files.
.config/gtk-3.0/gtk.css: Adding css to disable double drawing of menus/title bars and client-side decoration.
.config/compton.conf: Disabling fading (too slow). Lowering shadow-radius, so it won't interfere with WM bars.
.vdirsyncer/config: Adding 'b wins' conflict_resolution for akt.
...
Diffstat (limited to '.scvimrc')
-rw-r--r-- | .scvimrc | 10 |
1 files changed, 5 insertions, 5 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 set runtimepath+=/usr/share/vim/addons/ filetype=supercollider +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 ====================== |