blob: 6058e31393e724529b56c3d72244a0d4964f4caf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
vim.bo.commentstring = '/* %s */'
vim.keymap.set('v', '<localleader>=', ":'<'>!clang-format -style=file -<CR>", {
desc = 'Format the current selection with Clang Format',
})
vim.keymap.set('n', 'K', function()
vim.cmd [[
execute "silent !man -Tpdf '" . expand('<cword>') . "' | zathura - &"
]]
end, {
buffer = 0,
desc = 'View the manual page for the word under the cursor',
})
|