mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-10 01:14:30 +02:00
remove: nvim lsp installer
This commit is contained in:
parent
fc175ae9ad
commit
ef42e8a02c
6 changed files with 33 additions and 22 deletions
|
@ -2,7 +2,8 @@ local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|||
if not vim.loop.fs_stat(lazypath) then
|
||||
-- bootstrap lazy.nvim
|
||||
-- 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
|
||||
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
||||
vim.g.mapleader = " "
|
||||
|
@ -17,7 +18,18 @@ require("lazy").setup({
|
|||
lazy = true, -- every plugin is lazy-loaded by default
|
||||
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 },
|
||||
checker = { enabled = true }, -- automatically check for plugin updates
|
||||
performance = {
|
||||
|
|
|
@ -139,4 +139,13 @@ return {
|
|||
-- })
|
||||
-- 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")
|
||||
end,
|
||||
},
|
||||
-- for install lsp tidak support mason
|
||||
{
|
||||
"williamboman/nvim-lsp-installer",
|
||||
event = "BufRead",
|
||||
lazy = true,
|
||||
config = function()
|
||||
require("user.lsp.config")
|
||||
end,
|
||||
},
|
||||
-- auto pairs
|
||||
{
|
||||
"windwp/nvim-autopairs",
|
||||
|
@ -363,14 +354,6 @@ return {
|
|||
end
|
||||
end,
|
||||
}, -- mini scrollview
|
||||
{
|
||||
"karb94/neoscroll.nvim",
|
||||
lazy = true,
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("user.neoscroll")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"dstein64/nvim-scrollview",
|
||||
lazy = true,
|
||||
|
|
|
@ -93,4 +93,12 @@ return {
|
|||
require("user.telescope")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"karb94/neoscroll.nvim",
|
||||
lazy = true,
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("user.neoscroll")
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ return {
|
|||
FindText = "",
|
||||
Fire = "",
|
||||
Folder = "",
|
||||
FolderOpen = "",
|
||||
FolderOpen = "",
|
||||
FolderSymlink = "",
|
||||
Forward = "",
|
||||
Gear = "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue