From 9940abd1683efb0390af4858ac33c23160eee232 Mon Sep 17 00:00:00 2001 From: fleaz Date: Tue, 6 Jun 2023 15:18:23 +0200 Subject: [PATCH] home/neovim: Add arguments to black call in NeoFormat --- home-manager/modules/neovim.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home-manager/modules/neovim.nix b/home-manager/modules/neovim.nix index 08f047a..df2b835 100644 --- a/home-manager/modules/neovim.nix +++ b/home-manager/modules/neovim.nix @@ -210,6 +210,9 @@ let g:go_highlight_operators = 1 let g:go_highlight_build_constraints = 1 + " neoformat + let g:neoformat_python_black = { 'args': ['-l 120'] } + lua << EOF require("bufferline").setup{} EOF