neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

undotree.lua (187B)


      1 if vim.g.loaded_undotree_plugin ~= nil then
      2  return
      3 end
      4 vim.g.loaded_undotree_plugin = true
      5 
      6 vim.api.nvim_create_user_command('Undotree', function()
      7  require 'undotree'.open()
      8 end, {})