Skip to content

Commit 3c36d9a

Browse files
YaroSpaceUzaaft
andauthored
feat(lsp): added dev-tools.nvim (#1509)
* feat(lsp): added dev-tools.nvim * Apply suggestions from code review * Apply suggestions from code review --------- Co-authored-by: Uzair Aftab <48220549+Uzaaft@users.noreply.github.com>
1 parent 3e2ee61 commit 3c36d9a

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Dev-tools.nvim
2+
3+
Friendly developer tools for Nvim - Code Actions LSP server and library
4+
5+
**Repository:** <https://github.com/yarospace/dev-tools.nvim>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
return {
2+
"yarospace/dev-tools.nvim",
3+
lazy = true,
4+
event = "User AstroFile",
5+
dependencies = {
6+
{ "nvim-treesitter/nvim-treesitter" },
7+
{
8+
"folke/snacks.nvim",
9+
optional = true,
10+
opts = {
11+
picker = { enabled = true },
12+
terminal = { enabled = true },
13+
},
14+
},
15+
{
16+
"ThePrimeagen/refactoring.nvim",
17+
dependencies = { "nvim-lua/plenary.nvim" },
18+
},
19+
},
20+
opts = {
21+
actions = {},
22+
filetypes = { -- filetypes for which to attach the LSP
23+
include = {}, -- {} to include all
24+
exclude = {},
25+
},
26+
},
27+
}

0 commit comments

Comments
 (0)