Update .config/nvim/init.lua
Update .config/nvim/lazy-lock.json Add .config/nvim/lua/config/30_autocmds.lua Add .config/nvim/lua/plugin/15_lsp.lua Update .config/nvim/lua/plugin/20_completion.lua
This commit is contained in:
parent
7f85a60f51
commit
6a448f0654
5 changed files with 30 additions and 4 deletions
|
|
@ -7,14 +7,19 @@
|
|||
-- ├──── 00_lazy.lua Bootstraps lazy.nvim
|
||||
-- ├──── 10_opts.lua Built-in Nvim options
|
||||
-- ├──── 20_keymaps.lua Custom keymaps
|
||||
-- ├──── 30_autocmds.lua Custom autocmds
|
||||
-- ├── plugin/ Plugins for lazy.nvim are in here
|
||||
-- ├──── 00_colorscheme.lua Sets theme
|
||||
-- ├──── 10_hop.lua Enables hopping to words in the current buffer
|
||||
-- ├──── 20_completion.lua Autocompletion with mini.completion, and mini.snippets
|
||||
-- ├──── 15_lsp.lua Mason, LSP configurations
|
||||
-- ├──── 20_completion.lua Autocompletion with blink.cmp, and mini.snippets
|
||||
-- ├ snippets/ Snippets definitions are in here
|
||||
-- ├── package.json Snippet repository metadata
|
||||
-- ├── global.json Global text snippets
|
||||
-- ├── lua.json Lua-specific snippets
|
||||
-- ├── etc. ... and the same for any other language-specific snippets.
|
||||
|
||||
require("config.00_lazy")
|
||||
require("config.10_opts")
|
||||
require("config.20_keymaps")
|
||||
|
||||
require("config.30_autocmds")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue