hopefully fixed nvme issue
This commit is contained in:
parent
2a66cb0014
commit
cf23725f2f
4 changed files with 42 additions and 45 deletions
|
|
@ -100,6 +100,9 @@ in {
|
|||
toml = {
|
||||
format = [taplo];
|
||||
};
|
||||
bash = {
|
||||
lsp = [bash-language-server];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -247,47 +250,37 @@ in {
|
|||
git = false; # not really setup yet
|
||||
|
||||
lang = {
|
||||
lua = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
nix = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
docs = true;
|
||||
};
|
||||
rust = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
zig = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
elixir = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
gleam = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
haskell = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
java = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
protobuf = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
toml = {
|
||||
lsp = true;
|
||||
format = true;
|
||||
};
|
||||
lua.lsp = true;
|
||||
lua.format = true;
|
||||
|
||||
nix.lsp = true;
|
||||
nix.format = true;
|
||||
nix.docs = true;
|
||||
|
||||
rust.lsp = true;
|
||||
rust.format = true;
|
||||
|
||||
zig.lsp = true;
|
||||
zig.format = true;
|
||||
|
||||
elixir.lsp = true;
|
||||
elixir.format = true;
|
||||
|
||||
gleam.lsp = true;
|
||||
gleam.format = true;
|
||||
|
||||
haskell.lsp = true;
|
||||
haskell.format = true;
|
||||
|
||||
java.lsp = true;
|
||||
java.format = true;
|
||||
|
||||
protobuf.lsp = true;
|
||||
protobuf.format = true;
|
||||
|
||||
toml.format = true;
|
||||
|
||||
bash.lsp = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue