Compare commits

...

3 Commits

Author SHA1 Message Date
Vegard Berg 7e16584362 Added null-ls and mason-null-ls 2023-05-22 22:36:04 +02:00
Vegard Berg cf47755117 Updated dependencies for cmp-cmdline 2023-05-22 22:28:20 +02:00
Vegard Berg 611a2c29fb Added cmp-buffer and -cmdline 2023-05-22 22:28:05 +02:00
6 changed files with 37 additions and 0 deletions

View File

@ -3,6 +3,9 @@
"aerial.nvim": { "branch": "master", "commit": "189bf4cce7f029ca8b3684441dd9d8ca5e6925a4" },
"aniseed": { "branch": "master", "commit": "44d2886a9ec38abac61b4c73c2e57fb752232cfe" },
"barbar.nvim": { "branch": "master", "commit": "b8ca6076f75e49cca1fa0288c080f3d10ec2152c" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-cmdline": { "branch": "main", "commit": "5af1bb7d722ef8a96658f01d6eb219c4cf746b32" },
"cmp-nvim-lsp": { "branch": "main", "commit": "0e6b2ed705ddcff9738ec4ea838141654f12eeef" },
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
"conjure": { "branch": "master", "commit": "1dd96d90f53122225f698e58b50dee9ed760cf2e" },
"gitsigns.nvim": { "branch": "main", "commit": "c18b7ca0b5b50596722f3a1572eb9b8eb520c0f1" },

View File

@ -0,0 +1,5 @@
-- https://github.com/hrsh7th/cmp-buffer
return {
"hrsh7th/cmp-buffer"
}

View File

@ -0,0 +1,8 @@
-- https://github.com/hrsh7th/cmp-cmdline
return {
"hrsh7th/cmp-cmdline",
dependencies = {
"hrsh7th/cmp-buffer",
}
}

View File

@ -0,0 +1,15 @@
-- https://github.com/jay-babu/mason-null-ls.nvim
return {
"jay-babu/mason-null-ls.nvim",
event = { "BufReadPre", "BufNewFile" },
dependencies = {
"williamboman/mason.nvim",
"jose-elias-alvarez/null-ls.nvim",
},
config = function()
require("mason-null-ls").setup {
automatic_setup = true,
}
end
}

5
lua/plugins/null-ls.lua Normal file
View File

@ -0,0 +1,5 @@
-- https://github.com/jose-elias-alvarez/null-ls.nvim
return {
"jose-elias-alvarez/null-ls.nvim"
}

View File

@ -5,5 +5,6 @@ return {
dependencies = {
"saadparwaiz1/cmp_luasnip",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-cmdline",
},
}