fixes
This commit is contained in:
parent
f430375079
commit
1c033b2a25
|
|
@ -34,6 +34,7 @@
|
|||
plugins = [
|
||||
{ name = "zdharma-continuum/fast-syntax-highlighting"; }
|
||||
{ name = "nix-community/nix-zsh-completions"; }
|
||||
{ name = "zsh-users/zsh-completions"; }
|
||||
];
|
||||
};
|
||||
envExtra = ''
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ in {
|
|||
globals = {
|
||||
mapleader = " ";
|
||||
maplocalleader = ",";
|
||||
inlay_hints_visible = true;
|
||||
};
|
||||
opts = {
|
||||
termguicolors = true;
|
||||
|
|
@ -75,7 +76,6 @@ in {
|
|||
xz
|
||||
icu74
|
||||
alejandra
|
||||
nixpkgs-fmt
|
||||
vscode-extensions.ms-vscode.cpptools
|
||||
];
|
||||
extraPlugins = with pkgs.vimPlugins; [
|
||||
|
|
|
|||
|
|
@ -218,6 +218,7 @@
|
|||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||
['<C-Space>'] = cmp.mapping.complete(),
|
||||
['<C-e>'] = cmp.mapping.abort(),
|
||||
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
||||
})";
|
||||
};
|
||||
sources = [
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
gopls = {
|
||||
gofumpt = true;
|
||||
staticcheck = true;
|
||||
local = "github.com/masterodie";
|
||||
directoryFilters = ["-.git" "-.vscode" "-.idea" "-.vscode-test" "-node_modules"];
|
||||
semanticTokens = true;
|
||||
completeUnimported = true;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
outputs,
|
||||
...
|
||||
{ outputs
|
||||
, pkgs
|
||||
, ...
|
||||
}: {
|
||||
imports = [
|
||||
outputs.homeManagerModules.base
|
||||
|
|
@ -8,4 +8,8 @@
|
|||
outputs.homeManagerModules.shell
|
||||
outputs.homeManagerModules.development
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
go
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue