-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsp.nix
177 lines (170 loc) · 3.67 KB
/
lsp.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
_: {
plugins = {
lsp = {
enable = true;
inlayHints = true;
servers = {
nil_ls.enable = true;
rust_analyzer = {
enable = true;
installRustc = false;
installCargo = false;
};
ts_ls.enable = true;
volar.enable = true;
bashls.enable = true;
gopls.enable = true;
};
postConfig = "
vim.diagnostic.config({
severity_sort = true,
float = {
focusable = false,
style = 'minimal',
border = 'rounded',
source = 'always',
prefix = '',
header = '',
}
})";
};
none-ls = {
enable = true;
sources = {
formatting.prettierd = {
enable = true;
disableTsServerFormatter = true;
};
formatting.alejandra.enable = true;
};
};
crates.enable = true;
package-info = {
enable = true;
settings.hide_up_to_date = true;
};
};
keymaps = [
{
key = "<Leader>li";
action = "<cmd>LspInfo<cr>";
options = {
silent = true;
desc = "LSP: Current [I]nfo";
};
}
{
key = "<Leader>la";
action = "<cmd>lua vim.lsp.buf.code_action()<cr>";
options = {
silent = true;
desc = "LSP: Code Action";
};
}
{
key = "<Leader>ld";
action = "<cmd>Telescope diagnostics<cr>";
options = {
silent = true;
desc = "LSP: Document Diagnostics";
};
}
{
key = "<Leader>lf";
action = "<cmd>lua vim.lsp.buf.format({async = true})<cr>";
options = {
silent = true;
desc = "LSP: Format";
};
}
{
key = "<Leader>lj";
action = "<cmd>lua vim.diagnostic.goto_next()<CR>";
options = {
silent = true;
desc = "LSP: Next Diagnostic";
};
}
{
key = "<Leader>lk";
action = "<cmd>lua vim.diagnostic.goto_prev()<cr>";
options = {
silent = true;
desc = "LSP: Prev Diagnostic";
};
}
{
key = "<Leader>ll";
action = "<cmd>lua vim.lsp.codelens.run()<cr>";
options = {
silent = true;
desc = "LSP: CodeLens Action";
};
}
{
key = "<Leader>lq";
action = "<cmd>lua vim.diagnostic.setloclist()<cr>";
options = {
silent = true;
desc = "Add diagnostics to quickfix list";
};
}
{
key = "<Leader>lr";
action = "<cmd>lua vim.lsp.buf.rename()<cr>";
options = {
silent = true;
desc = "LSP: Rename";
};
}
{
key = "<Leader>ls";
action = "<cmd>Telescope lsp_document_symbols<cr>";
options = {
silent = true;
desc = "LSP: Document Symbols";
};
}
{
key = "gd";
action = "<cmd>Telescope lsp_definitions<CR>";
options = {
silent = true;
desc = "LSP: Show definition";
};
}
{
key = "K";
action = "<cmd>lua vim.lsp.buf.hover()<CR>";
options = {
silent = true;
desc = "LSP: Hover";
};
}
{
key = "gi";
action = "<cmd>Telescope lsp_implementations<CR>";
options = {
silent = true;
desc = "LSP: Show implemetation";
};
}
{
mode = "i";
key = "<C-k>";
action = "<cmd>lua vim.lsp.buf.signature_help()<CR>";
options = {
silent = true;
desc = "LSP: Signature help";
};
}
{
key = "gr";
action = "<cmd>Telescope lsp_references<CR>";
options = {
silent = true;
desc = "LSP: Show references";
};
}
];
}