diff options
| author | Tom Li Dobnik <tomlidobnik1@gmail.com> | 2026-03-10 14:09:51 +0100 |
|---|---|---|
| committer | Tom Li Dobnik <tomlidobnik1@gmail.com> | 2026-03-10 14:09:51 +0100 |
| commit | d98fd30dea3a6b796c7950bd175da3a5bd9db578 (patch) | |
| tree | d0533fdd7ee2aa4b528f41fc3d1b538b9fdac40c /.config/nvim/after | |
| parent | f7bbc5e6740f6199d7ed0fe704daaa7efd98c093 (diff) | |
update
Diffstat (limited to '.config/nvim/after')
| -rw-r--r-- | .config/nvim/after/ftplugin/python.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/python.lua b/.config/nvim/after/ftplugin/python.lua new file mode 100644 index 0000000..d5f5000 --- /dev/null +++ b/.config/nvim/after/ftplugin/python.lua @@ -0,0 +1,5 @@ +vim.api.nvim_create_autocmd("LspAttach", { + callback = function() + vim.lsp.handlers["$/progress"] = function() end + end, +}) |
