mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-23 17:28:50 +02:00
update
This commit is contained in:
parent
1ab37bd478
commit
bb1f2477f4
2 changed files with 38 additions and 39 deletions
2
init.lua
2
init.lua
|
@ -5,12 +5,12 @@ require("user.keymaps")
|
|||
require("user.autocommands")
|
||||
require("user.colorscheme")
|
||||
require("user.snip")
|
||||
require("user.bufferline")
|
||||
if onsave then
|
||||
require("user.format_onsave")
|
||||
end
|
||||
|
||||
-- dipindah ke plugins
|
||||
-- require("user.lualine")
|
||||
-- require("user.bufferline")
|
||||
-- require("user.cmp")
|
||||
-- require("user.lsp")
|
||||
|
|
|
@ -30,7 +30,8 @@ return {
|
|||
end,
|
||||
},
|
||||
{ "rafamadriz/friendly-snippets" },
|
||||
{"hrsh7th/nvim-cmp",
|
||||
{
|
||||
"hrsh7th/nvim-cmp",
|
||||
dependencies = "rafamadriz/friendly-snippets",
|
||||
opts = function()
|
||||
require("user.cmp")
|
||||
|
@ -54,8 +55,8 @@ return {
|
|||
end,
|
||||
},
|
||||
-- include treesitter
|
||||
require("plugins.treesitter")
|
||||
,{
|
||||
require("plugins.treesitter"),
|
||||
{
|
||||
"kyazdani42/nvim-web-devicons",
|
||||
commit = "563f3635c2d8a7be7933b9e547f7c178ba0d4352",
|
||||
init = function()
|
||||
|
@ -76,9 +77,9 @@ return {
|
|||
commit = "83bf4dc7bff642e145c8b4547aa596803a8b4dc4",
|
||||
dependencies = { "kyazdani42/nvim-web-devicons", "famiu/bufdelete.nvim" },
|
||||
event = "VeryLazy",
|
||||
config=function()
|
||||
require("user.bufferline")
|
||||
end,
|
||||
-- config = function()
|
||||
-- require("user.bufferline")
|
||||
-- end,
|
||||
},
|
||||
{ "moll/vim-bbye", commit = "25ef93ac5a87526111f43e5110675032dbcacf56" },
|
||||
{
|
||||
|
@ -144,10 +145,8 @@ return {
|
|||
{ "jose-elias-alvarez/null-ls.nvim", commit = "c0c19f32b614b3921e17886c541c13a72748d450" },
|
||||
{ "RRethy/vim-illuminate", commit = "a2e8476af3f3e993bb0d6477438aad3096512e42" },
|
||||
-- include for coding
|
||||
require "plugins.coding"
|
||||
|
||||
-- extra plugins
|
||||
,{
|
||||
require("plugins.coding"), -- extra plugins
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
commit = "76ea9a898d3307244dce3573392dcf2cc38f340f",
|
||||
dependencies = { { "nvim-lua/plenary.nvim" } },
|
||||
|
@ -162,7 +161,7 @@ return {
|
|||
"windwp/nvim-ts-autotag",
|
||||
dependencies = "nvim-treesitter",
|
||||
init = function()
|
||||
require('nvim-ts-autotag').setup()
|
||||
require("nvim-ts-autotag").setup()
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
@ -274,5 +273,5 @@ return {
|
|||
config = function()
|
||||
require("user.gitsigns")
|
||||
end,
|
||||
}
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue