├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── after └── ftplugin │ ├── c.vim │ ├── cpp.vim │ ├── gitconfig.vim │ ├── java.vim │ ├── lua.lua │ ├── make.vim │ ├── markdown.vim │ ├── python.vim │ ├── tex.vim │ └── text.vim ├── assets └── theovim-banner.jpg ├── dev-tool.sh ├── doc ├── tags └── theovim.txt ├── init.lua └── lua ├── plugins ├── autopairs.lua ├── cmp.lua ├── colorizer.lua ├── git.lua ├── latex.lua ├── lsp.lua ├── markdown.lua ├── oil.lua ├── telescope.lua ├── todo-comment.lua ├── tokyonight.lua ├── treesitter.lua └── which-key.lua └── ui ├── dashboard.lua ├── statusline.lua └── tabline.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/README.md -------------------------------------------------------------------------------- /after/ftplugin/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/c.vim -------------------------------------------------------------------------------- /after/ftplugin/cpp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/cpp.vim -------------------------------------------------------------------------------- /after/ftplugin/gitconfig.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/gitconfig.vim -------------------------------------------------------------------------------- /after/ftplugin/java.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/java.vim -------------------------------------------------------------------------------- /after/ftplugin/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/lua.lua -------------------------------------------------------------------------------- /after/ftplugin/make.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/make.vim -------------------------------------------------------------------------------- /after/ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/markdown.vim -------------------------------------------------------------------------------- /after/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/python.vim -------------------------------------------------------------------------------- /after/ftplugin/tex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/tex.vim -------------------------------------------------------------------------------- /after/ftplugin/text.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/after/ftplugin/text.vim -------------------------------------------------------------------------------- /assets/theovim-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/assets/theovim-banner.jpg -------------------------------------------------------------------------------- /dev-tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/dev-tool.sh -------------------------------------------------------------------------------- /doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/doc/tags -------------------------------------------------------------------------------- /doc/theovim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/doc/theovim.txt -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/init.lua -------------------------------------------------------------------------------- /lua/plugins/autopairs.lua: -------------------------------------------------------------------------------- 1 | return { 2 | "windwp/nvim-autopairs", 3 | opts = {}, 4 | } 5 | -------------------------------------------------------------------------------- /lua/plugins/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/cmp.lua -------------------------------------------------------------------------------- /lua/plugins/colorizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/colorizer.lua -------------------------------------------------------------------------------- /lua/plugins/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/git.lua -------------------------------------------------------------------------------- /lua/plugins/latex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/latex.lua -------------------------------------------------------------------------------- /lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /lua/plugins/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/markdown.lua -------------------------------------------------------------------------------- /lua/plugins/oil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/oil.lua -------------------------------------------------------------------------------- /lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /lua/plugins/todo-comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/todo-comment.lua -------------------------------------------------------------------------------- /lua/plugins/tokyonight.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/tokyonight.lua -------------------------------------------------------------------------------- /lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /lua/plugins/which-key.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/plugins/which-key.lua -------------------------------------------------------------------------------- /lua/ui/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/ui/dashboard.lua -------------------------------------------------------------------------------- /lua/ui/statusline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/ui/statusline.lua -------------------------------------------------------------------------------- /lua/ui/tabline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theopn/theovim/HEAD/lua/ui/tabline.lua --------------------------------------------------------------------------------