nvimdots.lua
vim config

Lua结构良好。bash编写。${HOME}/.config/nvim
├── after/
│ └── ftplugin/ filetype-based rules
├── fonts/ nerdfonts
├── ftdetect/ filetype detection
├── scripts
│ ├── nvim_up.sh script for upgrade to neovim nightly
│ ├── setup_config.sh script for installing dependencies for plugins
│ └── update_config.sh script for fetch new commits of this repo
├── init.lua
├── lua/
│ ├── core/
│ │ ├── event.lua event-based autocommands
│ │ ├── global.lua global variables
│ │ ├── init.lua
│ │ ├── mapping.lua basic keymaps
│ │ ├── options.lua neovim options
│ │ └── pack.lua custom packer wrapper
│ ├── keymap/ plugin-related keymaps
│ ├── modules/ plugin-configs
│ │ ├── completion/ nvim-cmp + LSP
│ │ │ ├── plugins.lua
│ │ │ └── server-settings/ settings for each LSP
│ │ ├── editor/
│ │ │ └── plugins.lua
│ │ ├── lang
│ │ │ └── plugins.lua
│ │ ├── tools/
│ │ │ ├── dap/ DAP settings for each language
│ │ │ └── plugins.lua
│ │ └── ui/
│ │ └── plugins.lua
│ └── utils utility functions
│ └── init.lua
├── snippets/
│ └── package.json how `LuaSnip` reads snippets, vscode-style
├── spell/ custom spelling correction
└── stylua.toml stylua settings注意:您可以在modules内重命名/创建文件夹,但请始终记住在其中添加plugins.lua以注册您的插件。
关注Wiki:先决条件,给自己喝杯咖啡☕
关注Wiki:用法将其香料变成您自己的风味(WIP)
Wiki列表:已安装插件(WIP)
请参阅Wiki:FAQ(WIP)
使用dstein64/vim-startuptime插件测试。
用RHYSD/VIM-Startuptime测试,这是一种用Go编写的CLI工具。

