File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments