├── .gitignore ├── .utils └── images │ ├── dashboard.png │ ├── lsp.png │ ├── lsp_install.png │ ├── preview.png │ └── showcase.png ├── LICENSE ├── README.md ├── config.lua ├── ignore ├── lua ├── colors │ ├── highlights.lua │ ├── init.lua │ └── palettes │ │ ├── default.lua │ │ └── onedarker.lua └── custom │ ├── autocmds.lua │ ├── builtins │ ├── cmp.lua │ ├── dashboard.lua │ ├── gitsigns.lua │ ├── icons.lua │ ├── init.lua │ ├── nvimtree.lua │ ├── others.lua │ ├── telescope.lua │ └── treesitter.lua │ ├── init.lua │ ├── keymappings.lua │ ├── lsp.lua │ ├── neovide.lua │ ├── options.lua │ ├── plugins │ ├── configs │ │ ├── blankline.lua │ │ ├── bufferline.lua │ │ ├── colorizer.lua │ │ ├── signature.lua │ │ └── statusline.lua │ └── init.lua │ └── utils.lua └── lvim-gui /.gitignore: -------------------------------------------------------------------------------- 1 | /plugin/ 2 | -------------------------------------------------------------------------------- /.utils/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/.utils/images/dashboard.png -------------------------------------------------------------------------------- /.utils/images/lsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/.utils/images/lsp.png -------------------------------------------------------------------------------- /.utils/images/lsp_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/.utils/images/lsp_install.png -------------------------------------------------------------------------------- /.utils/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/.utils/images/preview.png -------------------------------------------------------------------------------- /.utils/images/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/.utils/images/showcase.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/README.md -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/config.lua -------------------------------------------------------------------------------- /ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lua/colors/highlights.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/colors/highlights.lua -------------------------------------------------------------------------------- /lua/colors/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/colors/init.lua -------------------------------------------------------------------------------- /lua/colors/palettes/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/colors/palettes/default.lua -------------------------------------------------------------------------------- /lua/colors/palettes/onedarker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/colors/palettes/onedarker.lua -------------------------------------------------------------------------------- /lua/custom/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/autocmds.lua -------------------------------------------------------------------------------- /lua/custom/builtins/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/cmp.lua -------------------------------------------------------------------------------- /lua/custom/builtins/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/dashboard.lua -------------------------------------------------------------------------------- /lua/custom/builtins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/gitsigns.lua -------------------------------------------------------------------------------- /lua/custom/builtins/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/icons.lua -------------------------------------------------------------------------------- /lua/custom/builtins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/init.lua -------------------------------------------------------------------------------- /lua/custom/builtins/nvimtree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/nvimtree.lua -------------------------------------------------------------------------------- /lua/custom/builtins/others.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/others.lua -------------------------------------------------------------------------------- /lua/custom/builtins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/telescope.lua -------------------------------------------------------------------------------- /lua/custom/builtins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/builtins/treesitter.lua -------------------------------------------------------------------------------- /lua/custom/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/init.lua -------------------------------------------------------------------------------- /lua/custom/keymappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/keymappings.lua -------------------------------------------------------------------------------- /lua/custom/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/lsp.lua -------------------------------------------------------------------------------- /lua/custom/neovide.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/neovide.lua -------------------------------------------------------------------------------- /lua/custom/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/options.lua -------------------------------------------------------------------------------- /lua/custom/plugins/configs/blankline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/plugins/configs/blankline.lua -------------------------------------------------------------------------------- /lua/custom/plugins/configs/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/plugins/configs/bufferline.lua -------------------------------------------------------------------------------- /lua/custom/plugins/configs/colorizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/plugins/configs/colorizer.lua -------------------------------------------------------------------------------- /lua/custom/plugins/configs/signature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/plugins/configs/signature.lua -------------------------------------------------------------------------------- /lua/custom/plugins/configs/statusline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/plugins/configs/statusline.lua -------------------------------------------------------------------------------- /lua/custom/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/plugins/init.lua -------------------------------------------------------------------------------- /lua/custom/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lua/custom/utils.lua -------------------------------------------------------------------------------- /lvim-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViktorBusk/LunarChad/HEAD/lvim-gui --------------------------------------------------------------------------------