Skip to content

vitaly/folding-nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LSP-Powered folding plugin for neovim.

Requirements

Neovim nightly, nvim_lsp as well as the language servers you want to use this plugin with.

Installation

Install this plugin using your favorite package manager, or clone the source code inside /path_to_nvim_config_folder/pack/opt/*/ where * stands fot the standard wildcard.

Example (assuming your plugins are stored inside ~/.config/nvim/pack/github/opt)

git clone https://github.com/pierreglaser/folding-nvim ~/.config/nvim/pack/github/opt/folding-nvim

And make sure the plugin is loaded at initialization by placing the following inside your init.vim

packadd folding-nvim

Configuration

Neovim needs to add the folding.on_attach callback to each language server you want to use this plugin with. For instance, for palantir/python-language-server, add those following lua lines to your vimrc:

lua << EOF
function on_attach_callback(client, bufnr)
  -- If you use completion-nvim/diagnostic-nvim, uncomment those two lines.
  -- require('diagnostic').on_attach()
  -- require('completion').on_attach()
  require('folding').on_attach()
end

require'nvim_lsp'.pyls.setup{on_attach=on_attach_callback}
EOF

LICENCE

BSD 3-Clause Licence.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 97.6%
  • Vim Script 2.4%