neovim

Personal neovim configuration files
git clone git://gtms.dev/neovim
Log | Files | Refs

gitcommit.lua (253B)


      1 if pcall(require, 'cmp') then
      2   require('cmp').setup.buffer {
      3     sources = {
      4       --
      5       { name = 'git' },
      6       { name = 'glab_dpgw' },
      7       { name = 'path' },
      8       { name = 'buffer',   keyword_length = 5 },
      9     },
     10   }
     11 end
     12 
     13 vim.cmd.startinsert()