diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-11-17 22:24:43 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-11-17 22:24:43 +0100 |
commit | a3690ed8ca90823787fbaddb72f0a1874f1e999d (patch) | |
tree | 1b79521fdf10c133aa643e6b2e46522ab6b79097 /.config/nvim/ftplugin | |
parent | e953e2ee53503dcf070a7763743e4a76abb4518d (diff) |
Add lunarvim update to lsp/general
Diffstat (limited to '.config/nvim/ftplugin')
-rw-r--r-- | .config/nvim/ftplugin/python.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/ftplugin/python.lua b/.config/nvim/ftplugin/python.lua index f1e9a50..a725200 100644 --- a/.config/nvim/ftplugin/python.lua +++ b/.config/nvim/ftplugin/python.lua @@ -1,4 +1,4 @@ local formatters = require "lsp.null-ls.formatters" local linters = require "lsp.null-ls.linters" formatters.setup { { exe = "black", filetypes = { "python" } } } -formatters.setup { { exe = "flake8", filetypes = { "python" } } } +linters.setup { { exe = "flake8", filetypes = { "python" } } } |