feat: added snippets to neovim 8d54d388
Steve · 2025-09-03 09:20 1 file(s) · +8 −1
nvim/lua/plugins/mini.lua +8 −1
23 23
24 24
    vim.api.nvim_set_hl(0, "MiniPickMatchCurrent",
25 25
      { bg = vim.g.terminal_color_8
26 -
    })
26 +
      })
27 27
28 28
    require("mini.comment").setup({
29 29
      mappings = {
37 37
      mappings = {
38 38
        scroll_down = '<C-j>',
39 39
        scroll_up = '<C-k>',
40 +
      },
41 +
    })
42 +
43 +
    local gen_loader = require('mini.snippets').gen_loader
44 +
    require('mini.snippets').setup({
45 +
      snippets = {
46 +
        gen_loader.from_lang(),
40 47
      },
41 48
    })
42 49