mirror of https://github.com/wlcx/home.git
Compare commits
2 Commits
74b11aead4
...
96396f67a7
Author | SHA1 | Date |
---|---|---|
Sam W | 96396f67a7 | |
Sam W | 91c2171da3 |
|
@ -57,6 +57,10 @@
|
||||||
system = "aarch64-darwin";
|
system = "aarch64-darwin";
|
||||||
profiles = with profiles; [default dev dev-gui sensitive mac];
|
profiles = with profiles; [default dev dev-gui sensitive mac];
|
||||||
};
|
};
|
||||||
|
luroy = lib.mkHome {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
profiles = with profiles; [default dev];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# Per-system things
|
# Per-system things
|
||||||
|
|
|
@ -12,9 +12,17 @@ end
|
||||||
-- Completion
|
-- Completion
|
||||||
local cmp = require'cmp'
|
local cmp = require'cmp'
|
||||||
cmp.setup({
|
cmp.setup({
|
||||||
|
-- Disable completions if we're in a comment
|
||||||
|
enabled = function()
|
||||||
|
if require"cmp.config.context".in_treesitter_capture("comment")==true or require"cmp.config.context".in_syntax_group("Comment") then
|
||||||
|
return false
|
||||||
|
else
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end,
|
||||||
window = {
|
window = {
|
||||||
-- completion = cmp.config.window.bordered(),
|
completion = cmp.config.window.bordered(),
|
||||||
-- documentation = cmp.config.window.bordered(),
|
documentation = cmp.config.window.bordered(),
|
||||||
},
|
},
|
||||||
mapping = cmp.mapping.preset.insert({
|
mapping = cmp.mapping.preset.insert({
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
|
|
Loading…
Reference in New Issue