diff --git a/.config/nvim/lua/my/plugins/completion.lua b/.config/nvim/lua/my/plugins/completion.lua index b139206..bb35a2c 100644 --- a/.config/nvim/lua/my/plugins/completion.lua +++ b/.config/nvim/lua/my/plugins/completion.lua @@ -1,5 +1,6 @@ return { { 'https://github.com/hrsh7th/nvim-cmp', + lazy = true, dependencies = { 'https://github.com/hrsh7th/cmp-nvim-lsp', 'https://github.com/hrsh7th/cmp-buffer', diff --git a/.config/nvim/lua/my/plugins/filetypes.lua b/.config/nvim/lua/my/plugins/filetypes.lua index a5feccf..acc0142 100644 --- a/.config/nvim/lua/my/plugins/filetypes.lua +++ b/.config/nvim/lua/my/plugins/filetypes.lua @@ -2,7 +2,7 @@ local has_api_level = require('my.functions').has_api_level return { { 'https://github.com/nvim-treesitter/nvim-treesitter', - -- version = '*', + -- version = '*', -- needs version after v0.9.2 build = [[:TSUpdateSync]], opts = { ensure_installed = 'all', @@ -43,7 +43,7 @@ return { { 'https://github.com/powerman/vim-plugin-AnsiEsc' }, { 'https://github.com/lervag/vimtex', version = '*', - enabled = has_api_level(11) and vim.fn.executable('xelatex') == 1 + enabled = has_api_level(11) and vim.fn.executable('xelatex') == 1, }, { 'https://github.com/NvChad/nvim-colorizer.lua', opts = { diff --git a/.config/nvim/lua/my/plugins/net.lua b/.config/nvim/lua/my/plugins/net.lua index a3f8e2e..d6f848d 100644 --- a/.config/nvim/lua/my/plugins/net.lua +++ b/.config/nvim/lua/my/plugins/net.lua @@ -2,6 +2,6 @@ return { -- embed nvim in browsers { 'https://github.com/glacambre/firenvim', version = '*', - build = [[:call firenvim#install(0)]] + build = [[:call firenvim#install(0)]], } }