Wed, 25 Sep 2024 15:03:13 -0500
No LSP autostart when read-only
I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.
353 | 1 | |
2 | set line-graphics = utf-8 | |
3 | set vertical-split = false | |
4 | ||
825 | 5 | set main-view-date-local = true |
6 | set main-view-author-maxwidth = 25 | |
7 | ||
8 | set blame-view-date-local = true | |
9 | set blame-view-file-name-display = false | |
10 | set blame-view-author-maxwidth = 10 | |
11 | ||
353 | 12 | # *color* 'area' 'fgcolor' 'bgcolor' '[attributes]' |
13 | ||
14 | # general | |
15 | color default 15 235 | |
16 | color cursor 15 241 | |
17 | color title-focus 242 221 | |
18 | color title-blur 242 221 | |
19 | color delimiter 213 default | |
20 | color author 156 default | |
21 | color date 81 default | |
22 | color line-number 221 default | |
23 | color mode 255 default | |
24 | ||
25 | # main | |
26 | color main-tag 213 default bold | |
27 | color main-local-tag 213 default | |
28 | color main-remote 221 default | |
29 | color main-replace 81 default | |
30 | color main-tracked 221 default bold | |
31 | color main-ref 81 default | |
32 | color main-head 213 default bold | |
33 | color graph-commit 226 default | |
34 | ||
35 | # status | |
36 | #color stat-head 81 default | |
37 | ||
38 | # Diff colors | |
39 | color diff_add 10 default | |
40 | color diff_add2 10 default | |
41 | color diff_del 196 default | |
42 | color diff_del2 196 default | |
43 | color diff-header 221 default | |
44 | color diff-index 81 default | |
45 | color diff-chunk 213 default | |
46 | color diff_oldmode 221 default | |
47 | color diff_newmode 221 default | |
48 | color 'deleted file mode' 221 default | |
49 | color 'copy from' 223 default | |
50 | color 'copy to' 221 default | |
51 | color 'rename from' 221 default | |
52 | color 'rename to' 221 default | |
53 | color diff_similarity 221 default | |
54 | color 'dissimilarity' 221 default | |
55 | color 'diff_tree' 81 default | |
56 | color diff-stat 81 default | |
57 | color "Reported-by:" 156 default | |
58 | ||
59 | color 'Author:' 156 default | |
60 | color 'Commit:' 213 default | |
61 | color 'AuthorDate:' 221 default | |
62 | color 'CommitDate:' 221 default | |
63 | color 'Date:' 81 default | |
64 | color pp_refs 213 default | |
65 | color palette-0 226 default | |
66 | color palette-1 213 default | |
67 | color palette-2 118 default | |
68 | color palette-3 51 default | |
69 | color palette-4 196 default | |
70 | color palette-5 219 default | |
71 | color palette-6 190 default | |
72 | ||
73 | # status | |
74 | color status.header 221 default | |
75 | color status.section 81 default | |
76 | color stat_staged 213 default | |
77 | color stat_unstaged 213 default | |
78 | color stat_untracked 213 default | |
79 | ||
80 | # raw commit header | |
81 | color commit 156 default | |
82 | color committer 213 default | |
83 | ||
84 | # commit message | |
85 | color 'Signed-off-by' 221 default | |
86 | color 'Acked-by' 221 default | |
87 | color 'Tested-by' 221 default | |
88 | color 'Reviewed-by' 221 default | |
89 | ||
90 | # tree | |
91 | color tree.directory 221 default | |
92 | ||
93 | # LINE(PALETTE_0, "", COLOR_MAGENTA, COLOR_DEFAULT, 0), \ | |
94 | # LINE(PALETTE_1, "", COLOR_YELLOW, COLOR_DEFAULT, 0), \ | |
95 | # LINE(PALETTE_2, "", COLOR_CYAN, COLOR_DEFAULT, 0), \ | |
96 | # LINE(PALETTE_3, "", COLOR_GREEN, COLOR_DEFAULT, 0), \ | |
97 | # LINE(PALETTE_4, "", COLOR_DEFAULT, COLOR_DEFAULT, 0), \ | |
98 | # LINE(PALETTE_5, "", COLOR_WHITE, COLOR_DEFAULT, 0), \ | |
99 | # LINE(PALETTE_6, "", COLOR_RED, ) |