Mon, 06 Mar 2023 10:42:32 -0600
more default editor switching
1022 | 1 | local g = vim.g |
2 | ||
3 | -- >> Undotree | |
4 | g.undotree_SplitWidth = 45 | |
5 | g.undotree_SetFocusWhenToggle = 1 | |
6 | g.undotree_ShortIndicators = 1 | |
7 | g.undotree_DiffCommand = "diff -dp -U 1" | |
8 | ||
9 | -- >> Tagbar | |
10 | g.tagbar_autoclose = 1 | |
11 | g.tagbar_autofocus = 1 | |
12 | g.tagbar_compact = 1 | |
13 | g.tagbar_width = 30 | |
14 | ||
1034
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
15 | -- >> interestingwords |
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
16 | -- These are jellybeans colors and some complements |
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
17 | g.interestingWordsGUIColors = { |
1064 | 18 | "#C4A258", |
19 | "#6AADA0", | |
20 | "#71B9F8", | |
21 | "#A037B0", | |
22 | "#CF6A4C", | |
23 | "#D8AD4C", | |
1034
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
24 | } |
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
25 | g.interestingWordsTermColors = { |
1064 | 26 | "179", |
27 | "73", | |
28 | "75", | |
29 | "133", | |
30 | "167", | |
31 | "136", | |
1034
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
32 | } |
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
33 | |
1014 | 34 | return { |
1020
b1b644e9825d
Add more plain vim plugins
Meredith Howard <mhoward@roomag.org>
parents:
1014
diff
changeset
|
35 | "editorconfig/editorconfig-vim", |
1022 | 36 | |
1020
b1b644e9825d
Add more plain vim plugins
Meredith Howard <mhoward@roomag.org>
parents:
1014
diff
changeset
|
37 | "tpope/vim-unimpaired", |
b1b644e9825d
Add more plain vim plugins
Meredith Howard <mhoward@roomag.org>
parents:
1014
diff
changeset
|
38 | "tomtom/tcomment_vim", |
b1b644e9825d
Add more plain vim plugins
Meredith Howard <mhoward@roomag.org>
parents:
1014
diff
changeset
|
39 | "tpope/vim-endwise", |
1029
9265f8508e4c
Copy other ft and plugin settings
Meredith Howard <mhoward@roomag.org>
parents:
1022
diff
changeset
|
40 | "godlygeek/tabular", |
1064 | 41 | { "mbbill/undotree", cmd = "UndotreeToggle" }, |
1020
b1b644e9825d
Add more plain vim plugins
Meredith Howard <mhoward@roomag.org>
parents:
1014
diff
changeset
|
42 | |
1014 | 43 | "tpope/vim-vinegar", |
1034
d412eecafebf
Add + configure interestingwords
Meredith Howard <mhoward@roomag.org>
parents:
1031
diff
changeset
|
44 | "lfv89/vim-interestingwords", |
1020
b1b644e9825d
Add more plain vim plugins
Meredith Howard <mhoward@roomag.org>
parents:
1014
diff
changeset
|
45 | "kshenoy/vim-signature", |
1064 | 46 | { "majutsushi/tagbar", cmd = "TagbarToggle" }, |
1031 | 47 | |
48 | { | |
49 | "RRethy/vim-illuminate", | |
1064 | 50 | event = { "BufReadPost", "BufNewFile" }, |
1031 | 51 | opts = { |
52 | delay = 250, | |
53 | large_file_cutoff = 15000, | |
54 | }, | |
55 | config = function(_, opts) | |
56 | require("illuminate").configure(opts) | |
57 | end, | |
58 | }, | |
1014 | 59 | } |