add shebang for triggering better syntax highlighting
This commit is contained in:
parent
fed72a7b22
commit
9cde743af9
@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# some more ls aliases
|
# some more ls aliases
|
||||||
alias ll='ls -alF'
|
alias ll='ls -alF'
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
# ----------------------------------------------------------------------
|
||||||
# bash_prompt, from @mathiasbynens
|
# bash_prompt, from @mathiasbynens
|
||||||
# slightly modified
|
# slightly modified
|
||||||
@ -108,7 +110,7 @@ else
|
|||||||
fi;
|
fi;
|
||||||
|
|
||||||
# Set the terminal title to the current working directory.
|
# Set the terminal title to the current working directory.
|
||||||
PS1="\[\033]0;\w • \h\007\]";
|
PS1="\[\033]0;\W • \h\007\]";
|
||||||
PS1+="\n";
|
PS1+="\n";
|
||||||
PS1+="\[${userStyle}\]\u"; # username
|
PS1+="\[${userStyle}\]\u"; # username
|
||||||
PS1+="\[${dim}\] at ";
|
PS1+="\[${dim}\] at ";
|
||||||
|
2
.bashrc
2
.bashrc
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
case $- in
|
case $- in
|
||||||
*i*) ;;
|
*i*) ;;
|
||||||
|
2
.profile
2
.profile
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# if running bash
|
# if running bash
|
||||||
if [ -n "$BASH_VERSION" ]; then
|
if [ -n "$BASH_VERSION" ]; then
|
||||||
|
|
||||||
|
@ -4,8 +4,6 @@
|
|||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
First, add public SSH key of the machine you're cloning from as a deploy key to this repository's settings.
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone git@git.berlin:kremalicious/dotfiles-server.git
|
git clone git@git.berlin:kremalicious/dotfiles-server.git
|
||||||
cd dotfiles-server
|
cd dotfiles-server
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# needs to run as root
|
# needs to run as root
|
||||||
|
|
||||||
# Create a time-stamped .tar file in the current directory.
|
# Create a time-stamped .tar file in the current directory.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# list of files/folders to symlink in homedir
|
# list of files/folders to symlink in homedir
|
||||||
FILES=".bash_aliases .bash_prompt .bashrc .profile bin .vimrc"
|
FILES=".bash_aliases .bash_prompt .bashrc .profile bin .vimrc"
|
||||||
|
Loading…
Reference in New Issue
Block a user