Skip to content

Commit

Permalink
Update info and help files
Browse files Browse the repository at this point in the history
  • Loading branch information
lvim-tech committed Oct 29, 2022
1 parent a99d463 commit e6bd2b6
Show file tree
Hide file tree
Showing 5 changed files with 315 additions and 187 deletions.
29 changes: 0 additions & 29 deletions LVIM/modules/editor.org
Original file line number Diff line number Diff line change
Expand Up @@ -960,35 +960,6 @@
end
#+end_src

**  [[https://github.com/declancm/cinnamon.nvim][cinnamon.nvim]]

+ INIT

#+begin_src lua
modules["declancm/cinnamon.nvim"] = {
commit = funcs.get_commit("cinnamon.nvim", plugins_snapshot),
event = {
"BufRead",
},
config = editor_config.cinnamon_nvim,
}
#+end_src

+ CONFIG

#+begin_src lua
function config.cinnamon_nvim()
local cinnamon_status_ok, cinnamon = pcall(require, "cinnamon")
if not cinnamon_status_ok then
return
end
cinnamon.setup({
extra_keymaps = true,
extended_keymaps = true,
})
end
#+end_src

**  [[https://github.com/phaazon/hop.nvim][hop.nvim]]

+ INIT
Expand Down
30 changes: 29 additions & 1 deletion LVIM/modules/languages.org
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,35 @@
end
#+end_src

**  [[https://github.com/smjonas/inc-rename.nvim][inc-rename.nvim]]

+ INIT

#+begin_src lua
modules["smjonas/inc-rename.nvim"] = {
commit = funcs.get_commit("inc-rename.nvim", plugins_snapshot),
event = {
"BufRead",
},
config = languages_config.inc_rename_nvim,
}
#+end_src

+ CONFIG

#+begin_src lua
function config.inc_rename_nvim()
local inc_rename_status_ok, inc_rename = pcall(require, "inc_rename")
if not inc_rename_status_ok then
return
end
inc_rename.setup()
vim.keymap.set("n", "ge", function()
return ":IncRename " .. vim.fn.expand("<cword>")
end, { expr = true })
end
#+end_src

**  [[https://github.com/rmagatti/goto-preview][goto-preview]]

+ INIT
Expand Down Expand Up @@ -165,7 +194,6 @@
vim.api.nvim_create_user_command("LspPreviewCloseAll", "lua require('goto-preview').close_all_win()", {})
#+end_src


**  [[https://github.com/mfussenegger/nvim-jdtls][nvim-jdtls]]

+ INIT
Expand Down
Loading

0 comments on commit e6bd2b6

Please sign in to comment.