From 2039c880634f3c103805506e6358283ca4017524 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Fri, 22 May 2020 18:03:28 +0200 Subject: [PATCH] fix: fix omnisharp path --- home/editors/coc-settings.json | 2 +- home/editors/init.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/home/editors/coc-settings.json b/home/editors/coc-settings.json index 2c20f28..901e994 100644 --- a/home/editors/coc-settings.json +++ b/home/editors/coc-settings.json @@ -1,6 +1,6 @@ { "eslint.autoFixOnSave": true, - "omnisharp.path": "/home/felschr/.nix-profile/bin/omnisharp", + "omnisharp.path": "/etc/profiles/per-user/felschr/bin/omnisharp", "omnisharp.useGlobalMono": "never", "omnisharp.projectLoadTimeout": 120, "omnisharp.enableRoslynAnalyzers": true, diff --git a/home/editors/init.vim b/home/editors/init.vim index 3aab00a..257ad66 100644 --- a/home/editors/init.vim +++ b/home/editors/init.vim @@ -58,7 +58,7 @@ let g:lightline = { " omnisharp-vim config: let g:OmniSharp_server_stdio = 1 -let g:OmniSharp_server_path = '/home/felschr/.nix-profile/bin/omnisharp' +let g:OmniSharp_server_path = '/etc/profiles/per-user/felschr/bin/omnisharp' " TODO use nix ref instead let g:OmniSharp_selector_ui = 'fzf' let g:OmniSharp_highlight_types = 3 let g:OmniSharp_typeLookupInPreview = 1