bump inputs
This commit is contained in:
parent
025fbf87a7
commit
340017ed29
6 changed files with 156 additions and 119 deletions
|
@ -2,20 +2,23 @@
|
|||
plugins.conform-nvim = {
|
||||
enable = true;
|
||||
|
||||
# Run the formatter on file save.
|
||||
formatOnSave = {
|
||||
lspFallback = true;
|
||||
timeoutMs = 500;
|
||||
};
|
||||
# Receive notificaton when a formatter errors.
|
||||
notifyOnError = true;
|
||||
settings = {
|
||||
# Run the formatter on file save.
|
||||
format_on_save = {
|
||||
lspFallback = true;
|
||||
timeoutMs = 500;
|
||||
};
|
||||
|
||||
# Map of filetype to formatters.
|
||||
formattersByFt = {
|
||||
c = ["clang-format"];
|
||||
haskell = ["stylish-haskell"];
|
||||
lua = ["stylua"];
|
||||
nix = ["alejandra"];
|
||||
# Map of filetype to formatters.
|
||||
formattersByFt = {
|
||||
c = ["clang-format"];
|
||||
haskell = ["stylish-haskell"];
|
||||
lua = ["stylua"];
|
||||
nix = ["alejandra"];
|
||||
};
|
||||
|
||||
# Receive notificaton when a formatter errors.
|
||||
notifyOnError = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -9,19 +9,20 @@
|
|||
enable = true;
|
||||
};
|
||||
# Clojure
|
||||
clojure-lsp = {
|
||||
clojure_lsp = {
|
||||
enable = true;
|
||||
};
|
||||
# Haskell
|
||||
hls = {
|
||||
enable = true;
|
||||
installGhc = true;
|
||||
};
|
||||
# Lua
|
||||
lua-ls = {
|
||||
lua_ls = {
|
||||
enable = true;
|
||||
};
|
||||
# Nix
|
||||
nil-ls = {
|
||||
nil_ls = {
|
||||
enable = true;
|
||||
};
|
||||
# YAML
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue