diff options
Diffstat (limited to 'utils/installer')
| -rwxr-xr-x | utils/installer/install.sh | 6 | ||||
| -rw-r--r-- | utils/installer/lv-config.example.lua | 6 | 
2 files changed, 9 insertions, 3 deletions
| diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 4bd640a6..395cec38 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -192,16 +192,16 @@ else  fi  if [ -e "$HOME/.config/nvim/init.lua" ]; then -	echo 'nvcode already installed' +	echo 'LunarVim already installed'  else  	# clone config down  	cloneconfig  	# echo 'export PATH=$HOME/.config/nvim/utils/bin:$PATH' >>~/.zshrc -	# echo 'export PATH=$HOME/.config/nvcode/utils/bin:$PATH' >>~/.bashrc +	# echo 'export PATH=$HOME/.config/lunarvim/utils/bin:$PATH' >>~/.bashrc  fi  echo "I recommend you also install and activate a font from here: https://github.com/ryanoasis/nerd-fonts"  # echo "I also recommend you add 'set preview_images_method ueberzug' to ~/.config/ranger/rc.conf" -# echo 'export PATH=/home/$USER/.config/nvcode/utils/bin:$PATH appending to zshrc/bashrc' +# echo 'export PATH=/home/$USER/.config/lunarvim/utils/bin:$PATH appending to zshrc/bashrc' diff --git a/utils/installer/lv-config.example.lua b/utils/installer/lv-config.example.lua index c90d4876..f71ad561 100644 --- a/utils/installer/lv-config.example.lua +++ b/utils/installer/lv-config.example.lua @@ -83,6 +83,12 @@ O.lang.go.autoformat = true  -- rust  O.lang.rust.autoformat = true + +-- clang +O.lang.clang.autoformat = false -- Set to true to enable auto-format in C/C++ files. + + +  -- create custom autocommand field (This would be easy with lua)  -- Turn off relative_numbers | 
