diff --git a/README.md b/README.md index 61773af4..1513c3c7 100755 --- a/README.md +++ b/README.md @@ -2,10 +2,14 @@ ##内容: -* vim的配置文件 +* vim配置文件 * vim插件 * zsh配置文件 +## 运行截图 + +![screenshot.png](screenshot.png) + ## 简易安装方法: `wget https://raw.github.com/ma6174/vim/master/setup.sh && bash setup.sh` diff --git a/colors/slate.vim (Case Conflict 1) b/colors/slate.vim (Case Conflict 1) new file mode 100644 index 00000000..7d17344e --- /dev/null +++ b/colors/slate.vim (Case Conflict 1) @@ -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 diff --git a/plugin/my.vim b/plugin/my.vim new file mode 100644 index 00000000..299a49a7 --- /dev/null +++ b/plugin/my.vim @@ -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 diff --git a/plugin/noname.dot b/plugin/noname.dot new file mode 100644 index 00000000..5ea5bf6a --- /dev/null +++ b/plugin/noname.dot @@ -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 +} diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 00000000..62701f57 Binary files /dev/null and b/screenshot.png differ