Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 2c15bb6

Browse files
init: enable neovim zipPlugin
remove `zipPlugin` from `disabled_plugins` defined in `init.lua` Allows `gd` to jumps to a function definition within a jar file, e.g. such as a library dependency (clojure.core, etc.)
1 parent a5850d4 commit 2c15bb6

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
## Changed
4+
- init: `clojure_lsp` name corrected for Clojure LSP server
5+
- init: remove zipPlugin from disabled_plugins so `gd` jumps to function definitions in jar files
6+
37
# 2023-07-21
48
## Added
59
- community: "astrocommunity.color.ccc-nvim" color picker and highlighter plugin

init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ return {
6767
performance = {
6868
rtp = {
6969
-- customize default disabled vim plugins
70-
disabled_plugins = { "tohtml", "gzip", "matchit", "zipPlugin", "netrwPlugin", "tarPlugin" },
70+
-- "zipPlugin" removed from disabled_plugins so `gd` jumps to function definitions in jar files
71+
disabled_plugins = { "tohtml", "gzip", "matchit", "netrwPlugin", "tarPlugin" },
7172
},
7273
},
7374
},

0 commit comments

Comments
 (0)