chore: move plugins into different sections
This commit is contained in:
parent
523e02f6ef
commit
3b3c611c32
1 changed files with 102 additions and 96 deletions
198
lua/plugins.lua
198
lua/plugins.lua
|
@ -15,13 +15,6 @@ vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
--: Behaviour {{{
|
--: Behaviour {{{
|
||||||
{
|
|
||||||
"andrewferrier/wrapping.nvim",
|
|
||||||
config = function()
|
|
||||||
require("wrapping").setup()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
--:}}}
|
|
||||||
{
|
{
|
||||||
"nvim-tree/nvim-tree.lua",
|
"nvim-tree/nvim-tree.lua",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
@ -48,17 +41,10 @@ require("lazy").setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"romgrk/barbar.nvim",
|
"andrewferrier/wrapping.nvim",
|
||||||
dependencies = {
|
config = function()
|
||||||
"nvim-tree/nvim-web-devicons", -- optional, for file icons
|
require("wrapping").setup()
|
||||||
"lewis6991/gitsigns.nvim",
|
end,
|
||||||
},
|
|
||||||
opts = {
|
|
||||||
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
|
|
||||||
animation = true,
|
|
||||||
-- insert_at_start = true,
|
|
||||||
-- …etc.
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
@ -118,32 +104,6 @@ require("lazy").setup({
|
||||||
---@module "ibl"
|
---@module "ibl"
|
||||||
opts = { indent = { char = "│" } },
|
opts = { indent = { char = "│" } },
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"EdenEast/nightfox.nvim", -- themeing
|
|
||||||
opts = {
|
|
||||||
options = {
|
|
||||||
styles = {
|
|
||||||
comments = "italic",
|
|
||||||
keywords = "bold",
|
|
||||||
types = "italic,bold",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"catppuccin/nvim",
|
|
||||||
name = "catppuccin",
|
|
||||||
priority = 1000,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"lukas-reineke/virt-column.nvim",
|
|
||||||
opts = {
|
|
||||||
virtcolumn = "120",
|
|
||||||
exclude = {
|
|
||||||
buftypes = {},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}, -- thin bar indicating an arbitray character limit
|
|
||||||
{ -- fuzzy file finder
|
{ -- fuzzy file finder
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
|
@ -171,6 +131,47 @@ require("lazy").setup({
|
||||||
require("nvim-cmp-config")
|
require("nvim-cmp-config")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"FabijanZulj/blame.nvim",
|
||||||
|
opts = {
|
||||||
|
virtual_style = "right",
|
||||||
|
merge_consecutive = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"folke/trouble.nvim",
|
||||||
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||||
|
opts = {
|
||||||
|
auto_close = true,
|
||||||
|
modes = {
|
||||||
|
diagnostics = { auto_open = true },
|
||||||
|
},
|
||||||
|
|
||||||
|
win = { position = "right" },
|
||||||
|
-- your configuration comes here
|
||||||
|
-- or leave it empty to use the default settings
|
||||||
|
-- refer to the configuration section below
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"folke/which-key.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
init = function()
|
||||||
|
vim.o.timeout = true
|
||||||
|
vim.o.timeoutlen = 300
|
||||||
|
end,
|
||||||
|
opts = {
|
||||||
|
hidden = { "<silent>", "<cmd>", "<Cmd>", "<CR>", "^:", "^ ", "^call ", "^lua " },
|
||||||
|
-- your configuration comes here
|
||||||
|
-- or leave it empty to use the default settings
|
||||||
|
-- refer to the configuration section below
|
||||||
|
},
|
||||||
|
config = function(_, opts)
|
||||||
|
require("which-key-config")
|
||||||
|
require("which-key").setup(opts)
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mhartington/formatter.nvim",
|
"mhartington/formatter.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -179,25 +180,10 @@ require("lazy").setup({
|
||||||
require("formatter").setup(opts)
|
require("formatter").setup(opts)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"rcarriga/nvim-notify",
|
|
||||||
opts = {
|
|
||||||
render = "wrapped-compact",
|
|
||||||
max_width = function()
|
|
||||||
return math.floor(vim.o.columns * 0.5)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
config = function(_, opts)
|
|
||||||
require("notify").setup(opts)
|
|
||||||
vim.notify = require("notify")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"direnv/direnv.vim",
|
"direnv/direnv.vim",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"stevearc/dressing.nvim",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"nvimdev/dashboard-nvim",
|
"nvimdev/dashboard-nvim",
|
||||||
event = "VimEnter",
|
event = "VimEnter",
|
||||||
|
@ -216,13 +202,6 @@ require("lazy").setup({
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"FabijanZulj/blame.nvim",
|
|
||||||
opts = {
|
|
||||||
virtual_style = "right",
|
|
||||||
merge_consecutive = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"akinsho/toggleterm.nvim",
|
"akinsho/toggleterm.nvim",
|
||||||
version = "*",
|
version = "*",
|
||||||
|
@ -240,6 +219,14 @@ require("lazy").setup({
|
||||||
require("toggleterm").setup(opts)
|
require("toggleterm").setup(opts)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
--:}}}
|
||||||
|
--: Visuals {{{
|
||||||
|
{
|
||||||
|
"nvim-lualine/lualine.nvim",
|
||||||
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||||
|
opts = { options = { globalstatus = true } },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
|
@ -250,25 +237,58 @@ require("lazy").setup({
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-lualine/lualine.nvim",
|
"romgrk/barbar.nvim",
|
||||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
dependencies = {
|
||||||
opts = { options = { globalstatus = true } },
|
"nvim-tree/nvim-web-devicons", -- optional, for file icons
|
||||||
|
"lewis6991/gitsigns.nvim",
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
|
||||||
|
animation = true,
|
||||||
|
-- insert_at_start = true,
|
||||||
|
-- …etc.
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"folke/trouble.nvim",
|
"EdenEast/nightfox.nvim", -- themeing
|
||||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
||||||
opts = {
|
opts = {
|
||||||
auto_close = true,
|
options = {
|
||||||
modes = {
|
styles = {
|
||||||
diagnostics = { auto_open = true },
|
comments = "italic",
|
||||||
|
keywords = "bold",
|
||||||
|
types = "italic,bold",
|
||||||
},
|
},
|
||||||
|
|
||||||
win = { position = "right" },
|
|
||||||
-- your configuration comes here
|
|
||||||
-- or leave it empty to use the default settings
|
|
||||||
-- refer to the configuration section below
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
-- thin bar indicating an arbitray character limit
|
||||||
|
"lukas-reineke/virt-column.nvim",
|
||||||
|
opts = {
|
||||||
|
virtcolumn = "120",
|
||||||
|
exclude = {
|
||||||
|
buftypes = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"rcarriga/nvim-notify",
|
||||||
|
opts = {
|
||||||
|
render = "wrapped-compact",
|
||||||
|
max_width = function()
|
||||||
|
return math.floor(vim.o.columns * 0.5)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
config = function(_, opts)
|
||||||
|
require("notify").setup(opts)
|
||||||
|
vim.notify = require("notify")
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"b0o/incline.nvim",
|
"b0o/incline.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -279,23 +299,9 @@ require("lazy").setup({
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"folke/which-key.nvim",
|
"stevearc/dressing.nvim",
|
||||||
event = "VeryLazy",
|
|
||||||
init = function()
|
|
||||||
vim.o.timeout = true
|
|
||||||
vim.o.timeoutlen = 300
|
|
||||||
end,
|
|
||||||
opts = {
|
|
||||||
hidden = { "<silent>", "<cmd>", "<Cmd>", "<CR>", "^:", "^ ", "^call ", "^lua " },
|
|
||||||
-- your configuration comes here
|
|
||||||
-- or leave it empty to use the default settings
|
|
||||||
-- refer to the configuration section below
|
|
||||||
},
|
|
||||||
config = function(_, opts)
|
|
||||||
require("which-key-config")
|
|
||||||
require("which-key").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
|
--:}}}
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.diagnostic.config({
|
vim.diagnostic.config({
|
||||||
|
|
Loading…
Add table
Reference in a new issue