dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

init.lua (1167B)


      1 return {
      2   'numToStr/Comment.nvim', -- "gc" to comment visual regions/lines
      3 
      4   {
      5     "folke/which-key.nvim",
      6     config = function()
      7       vim.o.timeout = true
      8       vim.o.timeoutlen = 300
      9       require("which-key").setup()
     10     end
     11   },
     12 
     13 
     14   {
     15     'Eandrju/cellular-automaton.nvim',
     16     config = function()
     17       vim.keymap.set('n', 'q:', '<cmd>CellularAutomaton make_it_rain<CR>')
     18     end
     19   },
     20 
     21   {
     22     "echasnovski/mini.align",
     23     opts = {
     24       mappings = {
     25         start_with_preview = 'ga',
     26       },
     27     },
     28   },
     29   {
     30     "echasnovski/mini.ai",
     31     opts = {},
     32     event = "VeryLazy",
     33   },
     34   {
     35     "m00qek/baleia.nvim",
     36     version = "*",
     37     config = function()
     38       vim.g.baleia = require("baleia").setup({})
     39 
     40       -- Command to colorize the current buffer
     41       vim.api.nvim_create_user_command("BaleiaColorize", function()
     42         vim.g.baleia.once(vim.api.nvim_get_current_buf())
     43       end, { bang = true })
     44 
     45       -- Command to show logs
     46       vim.api.nvim_create_user_command("BaleiaLogs", vim.g.baleia.logger.show, { bang = true })
     47     end,
     48   },
     49   {
     50     'max397574/colortils.nvim',
     51     event = "VeryLazy",
     52     opts = {
     53       register = "0",
     54     },
     55   },
     56 }