1 parent bbd4831 commit 7bcbb19Copy full SHA for 7bcbb19
2 files changed
fnl/core.fnl
@@ -52,6 +52,11 @@
52
{:group g
53
:pattern :make
54
:command "setlocal iskeyword+=-"})
55
+ ;; wrap at word boundaries so text doesn't touch the window edge
56
+ (vim.api.nvim_create_autocmd :FileType
57
+ {:group g
58
+ :pattern :markdown
59
+ :command "setlocal linebreak breakindent"})
60
;; <cr> enters command mode everywhere except in quickfix
61
(vim.api.nvim_create_autocmd :BufEnter
62
fnl/mods/ui/render-markdown.fnl
@@ -1,3 +1,4 @@
1
(module mods.ui.render-markdown {autoload {render-markdown :render-markdown}})
2
3
-(render-markdown.setup {:file_types [:markdown :Avante]})
+(render-markdown.setup {:file_types [:markdown :Avante]
4
+ :sign {:enabled false}})
0 commit comments