.config/nvim/lua/plugins/editing.lua

Mon, 06 Mar 2023 23:33:14 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 06 Mar 2023 23:33:14 -0500
changeset 1068
537a428597b5
parent 1064
fcfa295076a8
child 1100
27bf2b97c98f
permissions
-rw-r--r--

tweak lazy loading

local g = vim.g

-- >> Undotree
g.undotree_SplitWidth = 45
g.undotree_SetFocusWhenToggle = 1
g.undotree_ShortIndicators = 1
g.undotree_DiffCommand = "diff -dp -U 1"

-- >> Tagbar
g.tagbar_autoclose = 1
g.tagbar_autofocus = 1
g.tagbar_compact = 1
g.tagbar_width = 30

-- >> interestingwords
-- These are jellybeans colors and some complements
g.interestingWordsGUIColors = {
  "#C4A258",
  "#6AADA0",
  "#71B9F8",
  "#A037B0",
  "#CF6A4C",
  "#D8AD4C",
}
g.interestingWordsTermColors = {
  "179",
  "73",
  "75",
  "133",
  "167",
  "136",
}

return {
  {
    "editorconfig/editorconfig-vim",
    event = { "BufReadPost", "BufNewFile" },
  },

  "tpope/vim-unimpaired",
  "tomtom/tcomment_vim",
  "tpope/vim-endwise",
  "godlygeek/tabular",
  { "mbbill/undotree", cmd = "UndotreeToggle" },

  "tpope/vim-vinegar",
  "lfv89/vim-interestingwords",
  "kshenoy/vim-signature",
  { "majutsushi/tagbar", cmd = "TagbarToggle" },

  {
    "RRethy/vim-illuminate",
    event = { "BufReadPost", "BufNewFile" },
    opts = {
      delay = 250,
      large_file_cutoff = 15000,
    },
    config = function(_, opts)
      require("illuminate").configure(opts)
    end,
  },
}

mercurial