├── .gitignore ├── .gitmodules ├── README.md ├── Rakefile ├── bootstrap.sh └── janus ├── ruby ├── janus.rb └── janus │ ├── errors.rb │ ├── gems.rb │ ├── github.rb │ ├── plugins.rb │ └── vim.rb ├── submodules.yaml └── vim ├── colors └── tasks │ └── sampler-pack.rake ├── core ├── before │ └── plugin │ │ ├── autocmds.vim │ │ ├── filetypes.vim │ │ ├── gui_settings.vim │ │ ├── janus.vim │ │ ├── mappings.vim │ │ ├── settings.vim │ │ └── statusline.vim ├── janus │ ├── after │ │ └── plugin │ │ │ └── vimrc_after.vim │ └── doc │ │ └── janus.txt └── plugins.vim ├── gvimrc ├── tools ├── before │ └── plugin │ │ └── nerdtree.vim └── janus │ └── after │ └── plugin │ ├── NERD_commenter.vim │ ├── ack.vim │ ├── ctrlp.vim │ ├── fugitive.vim │ ├── gist.vim │ ├── gundo.vim │ ├── kwbd.vim │ ├── narrowregion.vim │ ├── nerdtree.vim │ ├── syntastic.vim │ ├── tagbar.vim │ ├── unimpaired.vim │ ├── vimwiki.vim │ └── zoomwin.vim └── vimrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/Rakefile -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /janus/ruby/janus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/ruby/janus.rb -------------------------------------------------------------------------------- /janus/ruby/janus/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/ruby/janus/errors.rb -------------------------------------------------------------------------------- /janus/ruby/janus/gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/ruby/janus/gems.rb -------------------------------------------------------------------------------- /janus/ruby/janus/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/ruby/janus/github.rb -------------------------------------------------------------------------------- /janus/ruby/janus/plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/ruby/janus/plugins.rb -------------------------------------------------------------------------------- /janus/ruby/janus/vim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/ruby/janus/vim.rb -------------------------------------------------------------------------------- /janus/submodules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/submodules.yaml -------------------------------------------------------------------------------- /janus/vim/colors/tasks/sampler-pack.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/colors/tasks/sampler-pack.rake -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/autocmds.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/autocmds.vim -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/filetypes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/filetypes.vim -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/gui_settings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/gui_settings.vim -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/janus.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/janus.vim -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/mappings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/mappings.vim -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/settings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/settings.vim -------------------------------------------------------------------------------- /janus/vim/core/before/plugin/statusline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/before/plugin/statusline.vim -------------------------------------------------------------------------------- /janus/vim/core/janus/after/plugin/vimrc_after.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/janus/after/plugin/vimrc_after.vim -------------------------------------------------------------------------------- /janus/vim/core/janus/doc/janus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/janus/doc/janus.txt -------------------------------------------------------------------------------- /janus/vim/core/plugins.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/core/plugins.vim -------------------------------------------------------------------------------- /janus/vim/gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/gvimrc -------------------------------------------------------------------------------- /janus/vim/tools/before/plugin/nerdtree.vim: -------------------------------------------------------------------------------- 1 | if !janus#is_plugin_disabled("nerdtree") 2 | let NERDTreeHijackNetrw = 0 3 | endif 4 | -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/NERD_commenter.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/NERD_commenter.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/ack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/ack.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/ctrlp.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/fugitive.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/gist.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/gist.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/gundo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/gundo.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/kwbd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/kwbd.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/narrowregion.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/narrowregion.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/nerdtree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/nerdtree.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/syntastic.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/syntastic.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/tagbar.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/tagbar.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/unimpaired.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/unimpaired.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/vimwiki.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/vimwiki.vim -------------------------------------------------------------------------------- /janus/vim/tools/janus/after/plugin/zoomwin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/tools/janus/after/plugin/zoomwin.vim -------------------------------------------------------------------------------- /janus/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlhuda/janus/HEAD/janus/vim/vimrc --------------------------------------------------------------------------------