From 1eb3a3a6f03d15f16674c273a62caf019e7b11bc Mon Sep 17 00:00:00 2001 From: Mel Date: Tue, 29 Oct 2024 05:27:44 +0100 Subject: Configure YCM for Nix editing Signed-off-by: Mel --- configs/plugins.vimrc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 configs/plugins.vimrc (limited to 'configs') diff --git a/configs/plugins.vimrc b/configs/plugins.vimrc new file mode 100644 index 0000000..cdc2a88 --- /dev/null +++ b/configs/plugins.vimrc @@ -0,0 +1,13 @@ +" VIM PLUGIN SETTINGS + +" YOUCOMPLETEME: + +let g:ycm_language_server = + \ [ + \ { + \ 'name': 'nix', + \ 'cmdline': [ '/run/current-system/sw/bin/nil', '--stdio' ], + \ 'filetypes': [ 'nix' ] + \ } + \ ] + -- cgit 1.4.1