-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlast_touches.sh
executable file
·30 lines (28 loc) · 1002 Bytes
/
last_touches.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
ZSHRC_PRIV_PATH="${HOME}/.zshrc.priv"
if [ ! -f "$ZSHRC_PRIV_PATH" ]; then
echo " Creating new file: $ZSHRC_PRIV_PATH"
echo ' It is a file which is sourced by ~/.zshrc'
echo ' and it is not included in the dotfiles repository.'
cat <<EOF > "$ZSHRC_PRIV_PATH"
# This is an autogenerated file by the installer scripts of
# https://github.com/FolkerD0C/dotfiles
# This file is not part of the repository but is sourced by its .zshrc
# You can place private statements (eg. aliases and environmental variables)
# or functions here.
#
# Uncomment the following line to have lsp capabilities in neovim.
# List of supported languages:
# - Bash: 'bash'
# - C#: 'csharp'
# - Lua: 'lua'
# export NEOVIM_REQUIRED_LANGUAGES='bash,lua'
#
# Uncomment the following line to have a different
# indentation width then the default 2
# export NEOVIM_INDENT_WIDTH_GLOBAL='4'
#
# Uncomment the following line to have cargo/rust enabled in your shell
# source "${HOME}/.cargo/env"
EOF
fi