Skip to content

Commit

Permalink
Merge pull request #167 from ksonj/fix-null-ls
Browse files Browse the repository at this point in the history
plugins: Replace null-ls with none-ls
  • Loading branch information
NotAShelf authored Oct 21, 2023
2 parents 34db883 + 49c0a59 commit df93a11
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
34 changes: 17 additions & 17 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@
flake = false;
};

null-ls = {
url = "github:jose-elias-alvarez/null-ls.nvim";
none-ls = {
url = "github:nvimtools/none-ls.nvim";
flake = false;
};

Expand Down
2 changes: 1 addition & 1 deletion lib/types/plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ with lib; let
"vim-vsnip"
"nvim-code-action-menu"
"trouble"
"null-ls"
"none-ls"
"which-key"
"indent-blankline"
"nvim-cursorline"
Expand Down
2 changes: 1 addition & 1 deletion modules/lsp/null-ls/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ in {
config = mkIf cfg.null-ls.enable (mkMerge [
{
vim.lsp.enable = true;
vim.startPlugins = ["null-ls"];
vim.startPlugins = ["none-ls"];

vim.luaConfigRC.null_ls-setup = nvim.dag.entryAnywhere ''
local null_ls = require("null-ls")
Expand Down

0 comments on commit df93a11

Please sign in to comment.