this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: reenable neorg in NVim

+7 -7
+2 -2
modules/nvim.nix
··· 28 28 plugins.packer-nvim 29 29 plugins.vim-nickel 30 30 # plugins.lua-utils-nvim 31 - # plugins.neorg 32 - # plugins.neorg-telescope 31 + plugins.neorg 32 + plugins.neorg-telescope 33 33 plugins.nvim-treesitter.withAllGrammars 34 34 ]; 35 35
+5 -5
modules/nvim/init.fnl
··· 185 185 (map :n :<C-q>v ":vert Start") 186 186 (map :n :<C-q>t ":tab Start") 187 187 (map :t :<C-q> "<C-\\><C-n>") 188 - (map :i :<C-q> :<ESC>) 189 - (map :n :<C-q> :<ESC>) 188 + (map :i :<C-q><C-q> :<ESC>) 189 + (map :n :<C-q><C-q> :<ESC>) 190 190 (when (fun.executable :nvr) 191 191 (set vim.env.EDITOR "nvr -cc split -c 'set bufhidden=delete' --remote-wait"))) 192 192 ··· 289 289 :matchup {:enable true} 290 290 :indent {:enable true} 291 291 :incremental_selection {:enable true}}) 292 - ;(setup :neorg 293 - ; {:load {:core.defaults {} 294 - ; :core.concealer {}}}) 292 + (setup :neorg 293 + {:load {:core.defaults {} 294 + :core.concealer {}}}) 295 295 )) 296 296 297 297 (defcommand Clean "keeppatterns %s/\\s\\+$//e | set nohlsearch")