mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim: moved stuff around.
This commit is contained in:
parent
300d300664
commit
0d7a5fab7b
22 changed files with 975 additions and 990 deletions
|
|
@ -1,6 +1,45 @@
|
|||
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" },
|
||||
|
||||
{ "folke/which-key.nvim", event = "VeryLazy" },
|
||||
|
||||
-- Icons
|
||||
{
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
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"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
'stevearc/dressing.nvim',
|
||||
opts = {
|
||||
|
|
@ -27,9 +66,6 @@ return {
|
|||
}
|
||||
},
|
||||
},
|
||||
{ import = "user.plugins.ui.statusline" },
|
||||
-- File explorer
|
||||
{ import = "user.plugins.ui.neotree" },
|
||||
-- Nicer notifications
|
||||
{
|
||||
"j-hui/fidget.nvim",
|
||||
|
|
@ -48,8 +84,4 @@ return {
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue