From 8e1ae72fa7bc7236273b520c2efcf24a9edd58c2 Mon Sep 17 00:00:00 2001 From: Henry Palacios Date: Sat, 3 Jul 2021 17:40:29 -0300 Subject: Update nv script folder (#625) The path used by default in install.sh is ~/.config/nvim --- utils/bin/nv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/bin/nv b/utils/bin/nv index 3408e212..87e5e72a 100755 --- a/utils/bin/nv +++ b/utils/bin/nv @@ -1,2 +1,2 @@ #!/bin/bash -nvim -u ~/.config/nvcode/init.lua +nvim -u ~/.config/nvim/init.lua -- cgit v1.2.3 From 049fd808d9db997f475fbf8a95c0288c90e95176 Mon Sep 17 00:00:00 2001 From: "J.B.C" <57237705+juanCortelezzi@users.noreply.github.com> Date: Sat, 3 Jul 2021 18:13:35 -0300 Subject: fix(typo): nvcode -> LunarVim (#629) --- utils/installer/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils') diff --git a/utils/installer/install.sh b/utils/installer/install.sh index edf46f09..b94bccc2 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' -- cgit v1.2.3 From 7dc564c42727ac66dea1e9cb795a2568e00e4628 Mon Sep 17 00:00:00 2001 From: Mayank Dutta <33067129+mayankdutta@users.noreply.github.com> Date: Sun, 4 Jul 2021 02:43:57 +0530 Subject: added Clangd format_on_save (#621) * clang autoformat do save lot of trouble * clang autoformat do save lot of trouble * clang indentation done, comments updated * clang indentation done, comments updated Co-authored-by: Mayank Sharma --- utils/installer/lv-config.example.lua | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'utils') 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 -- cgit v1.2.3