ftp -o - https://jcs.org/move_in | sh -
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add a macvim config that sets up vim like writeroom

+88
+88
.gvimrc
··· 1 + " vim:ts=8 2 + " 3 + " macvim 7 config 4 + " mostly emulates a writeroom environment that runs in fullscreen 5 + " 6 + " joshua stein <jcs@jcs.org> 7 + 8 + set lines=50 9 + set columns=80 10 + 11 + set guioptions-=r " remove scrollbar 12 + set formatoptions=1 " don't break after 1-letter word 13 + set fuoptions=background:#00000000 " black out space around editor in fs 14 + set lbr " break lines on words 15 + 16 + " free up command+f to be used for toggline fullscreen 17 + macmenu &Edit.Find.Find\.\.\. key=<D-S-f> 18 + map <D-f> :set invfu<CR> 19 + 20 + " create a dark color scheme based on 21 + " http://vimcolorschemetest.googlecode.com/svn/colors/matrix.vim 22 + hi clear 23 + set background=dark 24 + hi Cursor guifg=#226622 guibg=#55ff55 25 + hi lCursor guifg=#226622 guibg=#55ff55 26 + " like Cursor, but used when in IME mode |CursorIM| 27 + hi CursorIM guifg=#226622 guibg=#55ff55 28 + " directory names (and other special names in listings) 29 + hi Directory guifg=#55ff55 guibg=#000000 30 + " diff mode: Added line |diff.txt| 31 + hi DiffAdd guifg=#55ff55 guibg=#226622 gui=none 32 + " diff mode: Changed line |diff.txt| 33 + hi DiffChange guifg=#55ff55 guibg=#226622 gui=none 34 + " diff mode: Deleted line |diff.txt| 35 + hi DiffDelete guifg=#113311 guibg=#113311 gui=none 36 + " diff mode: Changed text within a changed line |diff.txt| 37 + hi DiffText guifg=#55ff55 guibg=#339933 gui=bold 38 + " error messages on the command line 39 + hi ErrorMsg guifg=#55ff55 guibg=#339933 40 + " the column separating vertically split windows 41 + hi VertSplit guifg=#339933 guibg=#339933 42 + " line used for closed folds 43 + hi Folded guifg=#44cc44 guibg=#113311 44 + " 'foldcolumn' 45 + hi FoldColumn guifg=#44cc44 guibg=#226622 46 + " 'incsearch' highlighting; also used for the text replaced with 47 + hi IncSearch guifg=#226622 guibg=#55ff55 gui=none 48 + " line number for ":number" and ":#" commands, and when 'number' 49 + hi LineNr guifg=#44cc44 guibg=#000000 50 + " 'showmode' message (e.g., "-- INSERT --") 51 + hi ModeMsg guifg=#113311 guibg=#000000 52 + " |more-prompt| 53 + hi MoreMsg guifg=#44cc44 guibg=#000000 54 + " '~' and '@' at the end of the window, characters from 55 + hi NonText guifg=#113311 guibg=#000000 56 + " normal text 57 + hi Normal guifg=#44cc44 guibg=#000000 58 + " |hit-enter| prompt and yes/no questions 59 + hi Question guifg=#44cc44 guibg=#000000 60 + " Last search pattern highlighting (see 'hlsearch'). 61 + hi Search guifg=#113311 guibg=#44cc44 gui=none 62 + " Meta and special keys listed with ":map", also for text used 63 + hi SpecialKey guifg=#44cc44 guibg=#000000 64 + " status line of current window 65 + hi StatusLine guifg=#113311 guibg=#000000 gui=none 66 + " status lines of not-current windows 67 + hi StatusLineNC guifg=#113311 guibg=#000000 gui=none 68 + " titles for output from ":set all", ":autocmd" etc. 69 + hi Title guifg=#55ff55 guibg=#113311 gui=bold 70 + " Visual mode selection 71 + hi Visual guifg=#55ff55 guibg=#226622 gui=none 72 + " Visual mode selection when vim is "Not Owning the Selection". 73 + hi VisualNOS guifg=#44cc44 guibg=#000000 74 + " warning messages 75 + hi WarningMsg guifg=#55ff55 guibg=#000000 76 + " current match in 'wildmenu' completion 77 + hi WildMenu guifg=#226622 guibg=#55ff55 78 + 79 + hi Comment guifg=#226622 guibg=#000000 80 + hi Constant guifg=#55ff55 guibg=#226622 81 + hi Special guifg=#44cc44 guibg=#226622 82 + hi Identifier guifg=#55ff55 guibg=#000000 83 + hi Statement guifg=#55ff55 guibg=#000000 gui=bold 84 + hi PreProc guifg=#339933 guibg=#000000 85 + hi Type guifg=#55ff55 guibg=#000000 gui=bold 86 + hi Underlined guifg=#55ff55 guibg=#000000 gui=underline 87 + hi Error guifg=#55ff55 guibg=#339933 88 + hi Todo guifg=#113311 guibg=#44cc44 gui=none