Nvim: add new plugins, optimize old
This commit is contained in:
29
.config/nvim/lua/plugins/fold.lua
Normal file
29
.config/nvim/lua/plugins/fold.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
-- return {
|
||||
-- 'anuvyklack/pretty-fold.nvim',
|
||||
-- config = function()
|
||||
-- require('pretty-fold').setup()
|
||||
-- require('pretty-fold').ft_setup('cpp', {
|
||||
-- process_comment_signs = false,
|
||||
-- --comment_signs = {
|
||||
-- -- '//', -- C++ Doxygen comments
|
||||
-- --},
|
||||
-- })
|
||||
-- end
|
||||
-- },
|
||||
-- {
|
||||
-- 'anuvyklack/fold-preview.nvim',
|
||||
-- dependencies = 'anuvyklack/keymap-amend.nvim',
|
||||
-- config = function()
|
||||
-- require('fold-preview').setup({
|
||||
-- -- Your configuration goes here.
|
||||
-- })
|
||||
-- end
|
||||
-- },
|
||||
|
||||
|
||||
return {
|
||||
"chrisgrieser/nvim-origami",
|
||||
event = "BufReadPost", -- later or on keypress would prevent saving folds
|
||||
opts = true, -- needed even when using default config
|
||||
enabled = false
|
||||
}
|
||||
Reference in New Issue
Block a user