We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42ed46 commit 206ddd7Copy full SHA for 206ddd7
modules/nvim/lua/minizilla/misc.lua
@@ -5,6 +5,14 @@ require('leap').add_default_mappings()
5
6
require('nvim-autopairs').setup()
7
8
+-- TODO: find out why gleam commentstring is not properly set
9
+vim.api.nvim_create_autocmd("FileType", {
10
+ pattern = "gleam",
11
+ callback = function()
12
+ vim.bo.commentstring = "// %s"
13
+ end,
14
+})
15
+
16
map('<Leader>mp', '<Plug>MarkdownPreviewToggle')
17
18
local mark = require('harpoon.mark')
0 commit comments