diff options
-rw-r--r-- | nixpkgs/common.nix | 1 | ||||
-rw-r--r-- | vim/coc-settings.json | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/nixpkgs/common.nix b/nixpkgs/common.nix index 54094f2..74d2aba 100644 --- a/nixpkgs/common.nix +++ b/nixpkgs/common.nix @@ -45,6 +45,7 @@ programs.git.lfs.enable = true; home.file = { + ".vim/coc-settings.json".source = ../vim/coc-settings.json; ".config/tmux/tmux.conf".source = ../tmux/tmux.conf; ".config/icewm/preferences".source = ../icewm/preferences; ".config/icewm/keys".source = ../icewm/keys; diff --git a/vim/coc-settings.json b/vim/coc-settings.json new file mode 100644 index 0000000..0bea3dc --- /dev/null +++ b/vim/coc-settings.json @@ -0,0 +1,6 @@ +{ + "suggest.autoTrigger": "none", + "pullDiagnostic.onChange": false, + "signature.enable": false, + "inlayHint.enable": false +} |