mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
update
This commit is contained in:
parent
fe62b8f2c3
commit
693c31fb6e
2 changed files with 24 additions and 5 deletions
|
@ -292,7 +292,11 @@ return {
|
|||
event = "BufRead",
|
||||
config = function()
|
||||
-- vim.notify = require("notify") -- ini jika tidak transparant
|
||||
vim.notify = require("notify").setup({ background_colour = "#000000" })
|
||||
local notify = require("notify")
|
||||
-- this for transparency
|
||||
notify.setup({ background_colour = "#000000" })
|
||||
-- this overwrites the vim notify function
|
||||
vim.notify = notify.notify
|
||||
end,
|
||||
},
|
||||
-- for resize screen
|
||||
|
@ -504,4 +508,19 @@ return {
|
|||
-- require("user.lspsaga_config")
|
||||
-- end,
|
||||
-- },
|
||||
-- Khusus Projek laravel baru di buka
|
||||
-- {
|
||||
-- "adalessa/laravel.nvim",
|
||||
-- dependencies = {
|
||||
-- "nvim-telescope/telescope.nvim",
|
||||
-- },
|
||||
-- cmd = { "Sail", "Artisan", "Composer" },
|
||||
-- keys = {
|
||||
-- { "<leader>pa", ":Artisan<cr>" },
|
||||
-- },
|
||||
-- config = function()
|
||||
-- require("laravel").setup()
|
||||
-- require("telescope").load_extension("laravel")
|
||||
-- end,
|
||||
-- },
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue