From 73c04b784134e50cdeecdc111937d72914d7c655 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Tue, 5 Feb 2019 14:32:43 +0100 Subject: [PATCH] Use the hostname() call for reading the custom vim files --- init.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/init.vim b/init.vim index 84aff94..f9b3f8e 100644 --- a/init.vim +++ b/init.vim @@ -31,8 +31,7 @@ Plug 'arakashic/chromatica.nvim', { 'do': ':UpdateRemotePlugins' } call plug#end() " =============Paths===================== -echo $HOSTNAME -exec "source " . stdpath('config') . "/" . HOSTNAME . ".vim" +exec "source " . stdpath('config') . "/" . hostname() . ".vim" " =============Settings================== filetype plugin on filetype indent on