From 97238bddbd5b2934f1b5be281fecda027ac7b979 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Fri, 4 Oct 2024 08:51:14 +0200 Subject: [PATCH] removed work specific clangd formatting. --- modules/home-manager/nvim/lsp/clangd.nix | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/modules/home-manager/nvim/lsp/clangd.nix b/modules/home-manager/nvim/lsp/clangd.nix index 8229785..f12e463 100644 --- a/modules/home-manager/nvim/lsp/clangd.nix +++ b/modules/home-manager/nvim/lsp/clangd.nix @@ -29,23 +29,6 @@ BreakBeforeBinaryOperators: NonAssignment ... ''; - "work/.clang-format" = lib.mkIf config.user.git.workProfile.enable { - text = '' - --- - #this syncronizes with settings used by neovims treesitters so that the lsp formatting and treesitter formatting do not fight eatch other. - PointerAlignment: Left - ColumnLimit: 80 - IndentWidth: 4 - TabWidth: 4 - UseCRLF: false - UseTab: Never - AlignAfterOpenBracket: BlockIndent - AlwaysBreakBeforeMultilineStrings: true - BreakBeforeBraces: Allman - BreakBeforeBinaryOperators: None - ... - ''; - }; }; }; }