mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
remove: nvim lsp installer
This commit is contained in:
parent
fc175ae9ad
commit
ef42e8a02c
6 changed files with 33 additions and 22 deletions
|
@ -28,10 +28,9 @@
|
||||||
"none-ls-extras.nvim": { "branch": "main", "commit": "c226aca7a506dd4325fb96188bffe804d24bbf18" },
|
"none-ls-extras.nvim": { "branch": "main", "commit": "c226aca7a506dd4325fb96188bffe804d24bbf18" },
|
||||||
"none-ls.nvim": { "branch": "main", "commit": "72e25ed4162474ef5d666525853f8a42bffd97c5" },
|
"none-ls.nvim": { "branch": "main", "commit": "72e25ed4162474ef5d666525853f8a42bffd97c5" },
|
||||||
"nui.nvim": { "branch": "main", "commit": "a0fd35fcbb4cb479366f1dc5f20145fd718a3733" },
|
"nui.nvim": { "branch": "main", "commit": "a0fd35fcbb4cb479366f1dc5f20145fd718a3733" },
|
||||||
"nvim-autopairs": { "branch": "master", "commit": "c6139ca0d5ad7af129ea6c89cb4c56093f2c034a" },
|
"nvim-autopairs": { "branch": "master", "commit": "797260ff31e8bdd9db0f0c352659a35aba335b0b" },
|
||||||
"nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" },
|
"nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" },
|
||||||
"nvim-colorizer.lua": { "branch": "master", "commit": "85855b38011114929f4058efc97af1059ab3e41d" },
|
"nvim-colorizer.lua": { "branch": "master", "commit": "85855b38011114929f4058efc97af1059ab3e41d" },
|
||||||
"nvim-lsp-installer": { "branch": "main", "commit": "17e0bfa5f2c8854d1636fcd036dc8284db136baa" },
|
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "cf3dd4a290084a868fac0e2e876039321d57111c" },
|
"nvim-lspconfig": { "branch": "master", "commit": "cf3dd4a290084a868fac0e2e876039321d57111c" },
|
||||||
"nvim-material-icon": { "branch": "main", "commit": "602088c2682e61cbebd7191de7dc88bfa90c6890" },
|
"nvim-material-icon": { "branch": "main", "commit": "602088c2682e61cbebd7191de7dc88bfa90c6890" },
|
||||||
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
|
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
|
||||||
|
|
|
@ -2,7 +2,8 @@ local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
-- bootstrap lazy.nvim
|
-- bootstrap lazy.nvim
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
|
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable",
|
||||||
|
lazypath })
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
|
@ -17,7 +18,18 @@ require("lazy").setup({
|
||||||
lazy = true, -- every plugin is lazy-loaded by default
|
lazy = true, -- every plugin is lazy-loaded by default
|
||||||
version = "*", -- try installing the latest stable version for plugins that support semver
|
version = "*", -- try installing the latest stable version for plugins that support semver
|
||||||
},
|
},
|
||||||
ui = { border = "rounded", browser = "chrome", throttle = 40, custom_keys = { ["<localleader>l"] = false } },
|
ui = {
|
||||||
|
border = "rounded",
|
||||||
|
browser = "chrome",
|
||||||
|
throttle = 40,
|
||||||
|
custom_keys = { ["<localleader>l"] = false },
|
||||||
|
icons = {
|
||||||
|
ft = "",
|
||||||
|
lazy = " ",
|
||||||
|
loaded = "",
|
||||||
|
not_loaded = "",
|
||||||
|
},
|
||||||
|
},
|
||||||
change_detection = { enabled = false, notify = false },
|
change_detection = { enabled = false, notify = false },
|
||||||
checker = { enabled = true }, -- automatically check for plugin updates
|
checker = { enabled = true }, -- automatically check for plugin updates
|
||||||
performance = {
|
performance = {
|
||||||
|
|
|
@ -139,4 +139,13 @@ return {
|
||||||
-- })
|
-- })
|
||||||
-- end,
|
-- end,
|
||||||
-- },
|
-- },
|
||||||
|
-- for install lsp tidak support mason
|
||||||
|
-- {
|
||||||
|
-- "williamboman/nvim-lsp-installer",
|
||||||
|
-- event = "BufRead",
|
||||||
|
-- lazy = true,
|
||||||
|
-- config = function()
|
||||||
|
-- require("user.lsp.config")
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
}
|
}
|
||||||
|
|
|
@ -167,15 +167,6 @@ return {
|
||||||
require("user.mason_dap")
|
require("user.mason_dap")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
-- for install lsp tidak support mason
|
|
||||||
{
|
|
||||||
"williamboman/nvim-lsp-installer",
|
|
||||||
event = "BufRead",
|
|
||||||
lazy = true,
|
|
||||||
config = function()
|
|
||||||
require("user.lsp.config")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
-- auto pairs
|
-- auto pairs
|
||||||
{
|
{
|
||||||
"windwp/nvim-autopairs",
|
"windwp/nvim-autopairs",
|
||||||
|
@ -363,14 +354,6 @@ return {
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
}, -- mini scrollview
|
}, -- mini scrollview
|
||||||
{
|
|
||||||
"karb94/neoscroll.nvim",
|
|
||||||
lazy = true,
|
|
||||||
event = "InsertEnter",
|
|
||||||
config = function()
|
|
||||||
require("user.neoscroll")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"dstein64/nvim-scrollview",
|
"dstein64/nvim-scrollview",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
|
|
|
@ -93,4 +93,12 @@ return {
|
||||||
require("user.telescope")
|
require("user.telescope")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"karb94/neoscroll.nvim",
|
||||||
|
lazy = true,
|
||||||
|
event = "InsertEnter",
|
||||||
|
config = function()
|
||||||
|
require("user.neoscroll")
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@ return {
|
||||||
FindText = "",
|
FindText = "",
|
||||||
Fire = "",
|
Fire = "",
|
||||||
Folder = "",
|
Folder = "",
|
||||||
FolderOpen = "",
|
FolderOpen = "",
|
||||||
FolderSymlink = "",
|
FolderSymlink = "",
|
||||||
Forward = "",
|
Forward = "",
|
||||||
Gear = "",
|
Gear = "",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue