This commit is contained in:
asep komarudin 2023-01-28 12:19:19 +07:00
parent fe62b8f2c3
commit 693c31fb6e
2 changed files with 24 additions and 5 deletions

View file

@ -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,
-- },
}