forked from ma6174/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ma6174
committed
Jun 2, 2013
1 parent
a13c193
commit fcb8e16
Showing
5 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
" It's based on: | ||
runtime colors/Dark.vim | ||
|
||
let g:colors_name = "SlateBG" | ||
|
||
hi Normal guibg=DarkSlateGrey guifg=AntiqueWhite1 | ||
hi NonText guibg=#1F3F3F | ||
|
||
"hi Cursor guifg=AntiqueWhite1 guibg=bg gui=reverse | ||
hi Cursor guibg=salmon3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
function! Reddit() | ||
python << EOF | ||
import vim | ||
for i in dir(vim): | ||
vim.current.buffer.append(i) | ||
for i in dir(vim.current.buffer): | ||
vim.current.buffer.append(i) | ||
EOF | ||
endfunction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
digraph G { | ||
graph [layout=dot rankdir=LR] | ||
|
||
// This is just an example for you to use as a template. | ||
// Edit as you like. Whenever you save a legal graph | ||
// the layout in the graphviz window will be updated. | ||
|
||
vim [href="http://www.vim.org/"] | ||
dot [href="http://www.graphviz.org/"] | ||
vimdot [href="file:///usr/bin/vimdot"] | ||
|
||
{vim dot} -> vimdot | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.