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

Sun, 19 Feb 2023 13:03:57 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 19 Feb 2023 13:03:57 -0600
changeset 1029
9265f8508e4c
parent 1022
d509e282ae10
child 1031
ceb2e56c6e8f
permissions
-rw-r--r--

Copy other ft and plugin settings

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

return {
  "editorconfig/editorconfig-vim",

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

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

mercurial