dope
dope copied to clipboard
a modern structure neovim config template write in lua
I see $HOME/.cache are used instead of XDG based directory. (e.g. https://github.com/glepnir/cosynvim/blob/main/lua/core/init.lua#L6) ```lua local home = os.getenv('HOME') ``` How about cosynvim using `vim.fn.stdpath`?
Probably for consistency with `vim.fn.stdpath`, `core.helper.path_join` uses '\' as the path separator on Windows. However, even on Windows, the path returned by `vim.fs.find` still uses `/`. This caused `pack:load_modules_packages` to...
`Telescope app` 和 `Telescope dotfiles` 这两个是在你自己的配置里写的Telescope自定义扩展,在dope里没有,而且似乎不是很通用,是否考虑在dashboard的配置里移除?或者如果能换个更通用的模板的话就更好了。
First of all, thanks a lot for that lovely neovim configuration boilerplate! I have found that there's a typographical error in your `spellfile` option. https://github.com/nvimdev/dope/blob/d2ba3a6272115b7bf17156f9f6f818f6269baea3/lua/core/options.lua#L15 `spell/en.uft-8.add` should be `spell/en.utf-8.add`. Furthermore,...