all repos — nvim-custom-links @ 9e46ec3454b9053923ac6751c7cb674eef8fe2b8

Neovim simple plugin for custom local links

README.md (view raw)

 1# NVIM Custom Links
 2
 3Set words as links with custom path un Neovim.
 4
 5## LazyVim
 6
 7```lua
 8return {
 9  {
10    "https://git.5ika.ch/nvim-custom-links.git",
11    config = function()
12      vim.cmd([[
13        let g:custom_links_project_base_path = '~/projects'
14        let g:custom_links_area_base_path = '~/areas'
15        let g:project_template_path = '~/templates/project.md'
16        let g:area_template_path = '~/templates/area.md'
17      ]])
18    end,
19  },
20}
21```
22
23
24```