add gitsigns and vim-figutive

remove neogit
This commit is contained in:
Pim Kunis 2023-01-21 15:20:38 +01:00
parent 10554c500d
commit d17502e7a0
5 changed files with 10 additions and 25 deletions

View file

@ -0,0 +1 @@
require("gitsigns").setup()

View file

@ -32,27 +32,6 @@ local on_attach = function(client, bufnr)
vim.keymap.set('n', '<leader>f', function() vim.lsp.buf.format { async = true } end, bufopts)
end
-- local lsp_flags = {
-- -- This is the default in Nvim 0.7+
-- debounce_text_changes = 150,
-- }
-- require('lspconfig')['pyright'].setup{
-- on_attach = on_attach,
-- flags = lsp_flags,
-- }
-- require('lspconfig')['tsserver'].setup{
-- on_attach = on_attach,
-- flags = lsp_flags,
-- }
-- require('lspconfig')['rust_analyzer'].setup{
-- on_attach = on_attach,
-- flags = lsp_flags,
-- -- Server-specific settings...
-- settings = {
-- ["rust-analyzer"] = {}
-- }
-- }
require("lspconfig").pylsp.setup{
on_attach = on_attach
}

View file

@ -1,2 +0,0 @@
local neogit = require('neogit')
neogit.setup {}