Compare commits
2 commits
a574d4bbc3
...
8787c557f9
Author | SHA1 | Date | |
---|---|---|---|
8787c557f9 | |||
b272b4bee0 |
2 changed files with 16 additions and 0 deletions
|
@ -130,5 +130,12 @@ lspconfig.nixd.setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
lspconfig.rust_analyzer.setup({
|
||||||
|
settings = {
|
||||||
|
["rust-analyzer"] = {
|
||||||
|
check = { command = "clippy" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
require("gitsigns").setup()
|
require("gitsigns").setup()
|
||||||
|
|
|
@ -16,6 +16,15 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultUser = "leo";
|
defaultUser = "leo";
|
||||||
useWindowsDriver = true;
|
useWindowsDriver = true;
|
||||||
|
interop.includePath = false;
|
||||||
|
|
||||||
|
extraBin = [
|
||||||
|
{
|
||||||
|
name = "code";
|
||||||
|
src = lib.escapeShellArg "/mnt/c/Users/Leo/AppData/Local/Programs/Microsoft VS Code/bin/code";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
wslConf.network = {
|
wslConf.network = {
|
||||||
hostname = config.networking.hostName;
|
hostname = config.networking.hostName;
|
||||||
generateResolvConf = false;
|
generateResolvConf = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue