Browse Source

nixpkgs/neovim: add gitsigns code actions to null-ls

Thomas Dy 3 years ago
parent
commit
19e25db77f
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .config/nixpkgs/neovim/lsp.lua

+ 3 - 1
.config/nixpkgs/neovim/lsp.lua

@@ -6,7 +6,9 @@ vim.diagnostic.config({
 local nvim_lsp = require('lspconfig')
 local null_ls = require('null-ls')
 
-local null_ls_sources = {}
+local null_ls_sources = {
+  null_ls.builtins.code_actions.gitsigns,
+}
 
 -- enable LS / null-ls sources based on executable presence
 if vim.fn.executable("node_modules/.bin/eslint") == 1 then