1
0
Fork 0

Improved neovim setup

This commit is contained in:
Daniel Kempkens 2022-01-16 17:59:55 +01:00
parent b837c73857
commit 8a6a63ba4e
2 changed files with 7 additions and 6 deletions

View file

@ -60,12 +60,12 @@
"$HOME/.bin/calculate-nix-path"
# neovim
echo -n "Running LuaCacheClear: "
nvim -c 'try | execute "LuaCacheClear" | echo "Done" | catch /.*/ | echo "Command not found" | endtry | q' --headless
printf '\nRemoving luacache file: '
echo -n 'Removing luacache file: '
rm -f "$HOME/.cache/nvim/luacache"
echo "Done"
echo 'Running TSUpdateSync ...'
echo 'Done'
echo -n 'Running LuaCacheClear: '
nvim -c 'try | execute "LuaCacheClear" | echo "Done" | catch /.*/ | echo "Command not found" | endtry | q' --headless
printf '\nRunning TSUpdateSync ... '
nvim -c 'try | execute "TSUpdateSync" | echo "Done" | catch /.*/ | echo "Command not found" | endtry | q' --headless
printf '\n'
'';

View file

@ -25,7 +25,8 @@ in
withPython3 = false;
extraConfig = ''
let $CC = '${pkgs.clang}/bin/cc'
let $CC = '${pkgs.clang}/bin/clang'
let $CXX = '${pkgs.clang}/bin/clang++'
lua require('impatient')
lua require('nix_init')