├── .gitignore ├── .pack ├── Lokaltog-vim-easymotion.vim ├── Shougo-neosnippet.vim ├── altercation-vim-colors-solarized.vim ├── godlygeek-tabular.vim ├── gregsexton-gitv.vim ├── itchyny-lightline.vim ├── maralla-completor-typescript.vim ├── maralla-completor.vim ├── maralla-rope.vim ├── maralla-snips.vim ├── maralla-validator.vim ├── mattn-emmet-vim.vim ├── mattn-gist-vim.vim ├── nathanaelkane-vim-indent-guides.vim ├── packfile ├── posva-vim-vue.vim ├── rust-lang-rust.vim ├── terryma-vim-multiple-cursors.vim ├── tomtom-tcomment_vim.vim ├── tpope-vim-fugitive.vim ├── tpope-vim-markdown.vim ├── tpope-vim-unimpaired.vim └── vim-python-python-syntax.vim ├── README.md ├── after └── syntax │ └── go.vim ├── autoload ├── codeimage.vim ├── filefinder.vim ├── hunk.vim ├── json.vim ├── kit.vim └── text.vim ├── colors └── maral.vim ├── doc └── vimtips.txt ├── install.sh ├── pack └── .gitkeep ├── plugin └── utils.vim ├── snippets ├── all.snippets ├── c.snippets ├── go.snippets ├── javascript.snippets ├── markdown.snippets ├── proto.snippets ├── python.snippets ├── rust.snippets ├── sh.snippets ├── swift.snippets └── yaml.snippets └── vimrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.gitignore -------------------------------------------------------------------------------- /.pack/Lokaltog-vim-easymotion.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/Lokaltog-vim-easymotion.vim -------------------------------------------------------------------------------- /.pack/Shougo-neosnippet.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/Shougo-neosnippet.vim -------------------------------------------------------------------------------- /.pack/altercation-vim-colors-solarized.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/altercation-vim-colors-solarized.vim -------------------------------------------------------------------------------- /.pack/godlygeek-tabular.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/godlygeek-tabular.vim -------------------------------------------------------------------------------- /.pack/gregsexton-gitv.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/gregsexton-gitv.vim -------------------------------------------------------------------------------- /.pack/itchyny-lightline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/itchyny-lightline.vim -------------------------------------------------------------------------------- /.pack/maralla-completor-typescript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/maralla-completor-typescript.vim -------------------------------------------------------------------------------- /.pack/maralla-completor.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/maralla-completor.vim -------------------------------------------------------------------------------- /.pack/maralla-rope.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/maralla-rope.vim -------------------------------------------------------------------------------- /.pack/maralla-snips.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/maralla-snips.vim -------------------------------------------------------------------------------- /.pack/maralla-validator.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/maralla-validator.vim -------------------------------------------------------------------------------- /.pack/mattn-emmet-vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/mattn-emmet-vim.vim -------------------------------------------------------------------------------- /.pack/mattn-gist-vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/mattn-gist-vim.vim -------------------------------------------------------------------------------- /.pack/nathanaelkane-vim-indent-guides.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/nathanaelkane-vim-indent-guides.vim -------------------------------------------------------------------------------- /.pack/packfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/packfile -------------------------------------------------------------------------------- /.pack/posva-vim-vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/posva-vim-vue.vim -------------------------------------------------------------------------------- /.pack/rust-lang-rust.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/rust-lang-rust.vim -------------------------------------------------------------------------------- /.pack/terryma-vim-multiple-cursors.vim: -------------------------------------------------------------------------------- 1 | let g:multi_cursor_next_key='' 2 | -------------------------------------------------------------------------------- /.pack/tomtom-tcomment_vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/tomtom-tcomment_vim.vim -------------------------------------------------------------------------------- /.pack/tpope-vim-fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/tpope-vim-fugitive.vim -------------------------------------------------------------------------------- /.pack/tpope-vim-markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/tpope-vim-markdown.vim -------------------------------------------------------------------------------- /.pack/tpope-vim-unimpaired.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/.pack/tpope-vim-unimpaired.vim -------------------------------------------------------------------------------- /.pack/vim-python-python-syntax.vim: -------------------------------------------------------------------------------- 1 | let g:python_highlight_all = 1 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/README.md -------------------------------------------------------------------------------- /after/syntax/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/after/syntax/go.vim -------------------------------------------------------------------------------- /autoload/codeimage.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/autoload/codeimage.vim -------------------------------------------------------------------------------- /autoload/filefinder.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/autoload/filefinder.vim -------------------------------------------------------------------------------- /autoload/hunk.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/autoload/hunk.vim -------------------------------------------------------------------------------- /autoload/json.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/autoload/json.vim -------------------------------------------------------------------------------- /autoload/kit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/autoload/kit.vim -------------------------------------------------------------------------------- /autoload/text.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/autoload/text.vim -------------------------------------------------------------------------------- /colors/maral.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/colors/maral.vim -------------------------------------------------------------------------------- /doc/vimtips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/doc/vimtips.txt -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/install.sh -------------------------------------------------------------------------------- /pack/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/utils.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/plugin/utils.vim -------------------------------------------------------------------------------- /snippets/all.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/all.snippets -------------------------------------------------------------------------------- /snippets/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/c.snippets -------------------------------------------------------------------------------- /snippets/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/go.snippets -------------------------------------------------------------------------------- /snippets/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/javascript.snippets -------------------------------------------------------------------------------- /snippets/markdown.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/markdown.snippets -------------------------------------------------------------------------------- /snippets/proto.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/proto.snippets -------------------------------------------------------------------------------- /snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/python.snippets -------------------------------------------------------------------------------- /snippets/rust.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/rust.snippets -------------------------------------------------------------------------------- /snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/sh.snippets -------------------------------------------------------------------------------- /snippets/swift.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/swift.snippets -------------------------------------------------------------------------------- /snippets/yaml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/snippets/yaml.snippets -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maralla/dotvim/HEAD/vimrc --------------------------------------------------------------------------------