├── LICENSE ├── README.md ├── autoload └── airline │ └── themes │ └── vimterial_dark.vim ├── colors ├── colors.vim ├── syntax │ ├── bash │ │ └── bash.vim │ ├── css │ │ └── juleswang-css.vim │ ├── html │ │ └── othree-html5.vim │ ├── javascript │ │ └── pangloss-vim-javascript.vim │ ├── jinja │ │ └── glench-vim-jinja2-syntax.vim │ ├── less │ │ └── genoma-vim-less.vim │ ├── nerdtree │ │ └── nerdtree.vim │ └── xml │ │ └── xml.vim └── vimterial_dark.vim └── screenshots ├── html.png ├── js.png ├── less.png └── py.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/README.md -------------------------------------------------------------------------------- /autoload/airline/themes/vimterial_dark.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/autoload/airline/themes/vimterial_dark.vim -------------------------------------------------------------------------------- /colors/colors.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/colors.vim -------------------------------------------------------------------------------- /colors/syntax/bash/bash.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/bash/bash.vim -------------------------------------------------------------------------------- /colors/syntax/css/juleswang-css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/css/juleswang-css.vim -------------------------------------------------------------------------------- /colors/syntax/html/othree-html5.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/html/othree-html5.vim -------------------------------------------------------------------------------- /colors/syntax/javascript/pangloss-vim-javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/javascript/pangloss-vim-javascript.vim -------------------------------------------------------------------------------- /colors/syntax/jinja/glench-vim-jinja2-syntax.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/jinja/glench-vim-jinja2-syntax.vim -------------------------------------------------------------------------------- /colors/syntax/less/genoma-vim-less.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/less/genoma-vim-less.vim -------------------------------------------------------------------------------- /colors/syntax/nerdtree/nerdtree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/nerdtree/nerdtree.vim -------------------------------------------------------------------------------- /colors/syntax/xml/xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/syntax/xml/xml.vim -------------------------------------------------------------------------------- /colors/vimterial_dark.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/colors/vimterial_dark.vim -------------------------------------------------------------------------------- /screenshots/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/screenshots/html.png -------------------------------------------------------------------------------- /screenshots/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/screenshots/js.png -------------------------------------------------------------------------------- /screenshots/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/screenshots/less.png -------------------------------------------------------------------------------- /screenshots/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbs/vimterial_dark/HEAD/screenshots/py.png --------------------------------------------------------------------------------