Update .config/nvim/init.lua
Update .config/nvim/lazy-lock.json Add .config/nvim/lua/plugin/03_treesitter.lua Update .config/nvim/lua/plugin/20_completion.lua
This commit is contained in:
parent
025da5d36a
commit
2d7096e6cb
4 changed files with 12 additions and 0 deletions
|
|
@ -12,6 +12,7 @@
|
|||
-- ├──── 00_colorscheme.lua Sets theme
|
||||
-- ├──── 01_whichkey.lua Displays keymaps on input
|
||||
-- ├──── 02_sleuth.lua Auto-adjusting shiftwidth and expandtab based on current file
|
||||
-- ├──── 03_treesitter.lua Does anybody know what this does?
|
||||
-- ├──── 05_fzf.lua Pickers with fzf-lua
|
||||
-- ├──── 10_hop.lua Enables hopping to words in the current buffer
|
||||
-- ├──── 15_lsp.lua Mason, LSP configurations
|
||||
|
|
|
|||
|
|
@ -8,9 +8,11 @@
|
|||
"mason-lspconfig.nvim": { "branch": "main", "commit": "d7b5feb6e769e995f7fcf44d92f49f811c51d10c" },
|
||||
"mason.nvim": { "branch": "main", "commit": "ad7146aa61dcaeb54fa900144d768f040090bff0" },
|
||||
"mini.icons": { "branch": "main", "commit": "284798619aed9f4c1ac1b9417b9a5e3b4b85ef3a" },
|
||||
"mini.pairs": { "branch": "main", "commit": "b9aada8c0e59f2b938e98fbf4eae0799eba96ad9" },
|
||||
"mini.snippets": { "branch": "main", "commit": "7610dc3aaf7fb09b9cc428273a8ba15ef8aef495" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "a89bfcfd0e44f898341ac8a80ba83ccf6218bef3" },
|
||||
"nvim-scissors": { "branch": "main", "commit": "9b4fc66427568b2139480fcc645dd7bb91884ade" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
|
||||
"vim-sleuth": { "branch": "master", "commit": "be69bff86754b1aa5adcbb527d7fcd1635a84080" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
|
||||
}
|
||||
|
|
|
|||
8
private_dot_config/nvim/lua/plugin/03_treesitter.lua
Normal file
8
private_dot_config/nvim/lua/plugin/03_treesitter.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
{
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
branch = 'master',
|
||||
lazy = false,
|
||||
build = ":TSUpdate"
|
||||
},
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
return {
|
||||
{ 'nvim-mini/mini.pairs', opts = {} },
|
||||
{
|
||||
'saghen/blink.cmp',
|
||||
dependencies = { 'rafamadriz/friendly-snippets' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue