blob: 6e8f870fb1e001ee17293a86f481477fab9ea755 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local vim = vim
vim.pack.add({
{ src = "https://github.com/saghen/blink.cmp", version = vim.version.range("*") },
"https://github.com/neovim/nvim-lspconfig",
"https://github.com/rafamadriz/friendly-snippets",
})
vim.lsp.enable({
"bashls", -- npm install -g bash-language-server
"lua_ls", -- os pkg manager lua-language-server
})
require("blink.cmp").setup({})
|