1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-02 02:49:26 +00:00

[neovim] Set clear_chat_on_new_prompt to true in CopilotChat configuration

This commit is contained in:
2024-02-25 19:51:51 +01:00
parent cec9545d6e
commit 2ebf440c20
3 changed files with 22 additions and 20 deletions

View File

@ -11,7 +11,7 @@ copy_dotfiles()
--exclude ".git*" \
--exclude "$(basename "$0")" \
--exclude "LICENSE" \
--exclude "README.md" \
--exclude "README.md" "$@" \
-hlav --no-perms . ~
echo ""
@ -63,11 +63,13 @@ main()
dconf_dumper
;;
--install)
copy_dotfiles
shift
copy_dotfiles "$@"
dconf_loader
;;
--install-dotfiles)
copy_dotfiles
shift
copy_dotfiles "$@"
;;
--install-dconf)
dconf_loader
@ -80,5 +82,5 @@ main()
cd - > /dev/null
}
main "$1"
main "$@"