mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
65 lines
1.7 KiB
Lua
65 lines
1.7 KiB
Lua
local ui = require("user.ui.telescope")
|
|
local icons = require('user.icons')
|
|
|
|
return {
|
|
{ import = "user.plugins.ui.dashboard" },
|
|
|
|
{ import = "user.plugins.ui.editor" },
|
|
|
|
{ import = "user.plugins.ui.colorscheme" },
|
|
{ import = "user.plugins.ui.statusline" },
|
|
{ import = "user.plugins.ui.statuscolumn" },
|
|
{ import = "user.plugins.ui.gitsigns" },
|
|
-- File explorer
|
|
-- { import = "user.plugins.ui.neotree" },
|
|
{ import = "user.plugins.ui.nvimtree" },
|
|
|
|
{ "folke/which-key.nvim", event = "VeryLazy" },
|
|
|
|
-- Icons
|
|
{
|
|
'nvim-tree/nvim-web-devicons',
|
|
lazy = true,
|
|
opts = {
|
|
override = {
|
|
php = {
|
|
icon = icons.filetypes.php,
|
|
color = "#4F5B93",
|
|
name = "Php"
|
|
}
|
|
},
|
|
override_by_filename = {
|
|
["artisan"] = {
|
|
icon = icons.filetypes.laravel,
|
|
color = "#f05340",
|
|
name = "LaravelArtisan"
|
|
},
|
|
["phpunit.xml"] = {
|
|
icon = icons.filetypes.phpunit,
|
|
color = "#0d6efd",
|
|
name = "PhpUnit"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
-- Nicer notifications
|
|
{
|
|
"j-hui/fidget.nvim",
|
|
opts = {
|
|
notification = {
|
|
window = {
|
|
normal_hl = "NormalFloat",
|
|
winblend = 0,
|
|
border = { " " },
|
|
x_padding = 1,
|
|
y_padding = 1,
|
|
}
|
|
},
|
|
progress = {
|
|
display = {
|
|
done_ttl = 2,
|
|
}
|
|
}
|
|
}
|
|
},
|
|
}
|