aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/editor.lua
blob: 47fe8b44d1d1b38d4646d6e2adef47fa02f0b5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
return {
    -- { "Saecki/crates.nvim", config = true },
    {
        "nvim-telescope/telescope.nvim",
        config = true,
        dependencies = { "nvim-lua/plenary.nvim" },
    },
    {
        "natecraddock/sessions.nvim",
        config = true
    },
    {
        "f-person/git-blame.nvim",
        event = "VeryLazy",
        opts = {
            date_format = "%r"
        },
    },
    {
        "chentoast/marks.nvim",
        -- event = "VeryLazy",
        config = true
    }
}