summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/plugins/telescope.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua
index 2083cee..4fb77d8 100644
--- a/nvim/lua/plugins/telescope.lua
+++ b/nvim/lua/plugins/telescope.lua
@@ -41,7 +41,7 @@ return {
end, { desc = '[S]earch [N]eovim files' } )
vim.keymap.set('n', '<leader>sm', function()
- builtin.man_pages { sections = { 'ALL' } }
+ builtin.man_pages { sections = { '1', '2', '3' } }
end, { desc = '[S]earch [M]an pages' })
end,
}