diff --git a/README.md b/README.md index 1a16aa4..4df26d6 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,12 @@ However, it takes a different approach to most of the features seen in other edi - Other modes can be used by holding down keybindings (i.e. `ctrl-x` inside of `insert` mode) - Lambda is extremely fast and makes use of efficient memory management. - Neovim is slow, and actually requires [a plugin to speed it up](https://github.com/lewis6991/impatient.nvim). -- Lambda has much better default keybindings than other text editors. \ No newline at end of file +- Lambda has much better default keybindings than other text editors. + +### Getting started +```bash +git clone https://github.com/SpyHoodle/lambda.git # Clone the repository +cd lambda # Enter lambda directory +chmod +x install.sh # Make the install script executable +./install.sh # Run the install script +``` \ No newline at end of file diff --git a/install.sh b/install.sh index 0dffb35..ab5886f 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ # Copy lambda to ~/.local/share rm -rf ~/.local/share/lambda -ln -sf $(pwd) ~/.local/share/lambda +ln -sf "$(pwd)" ~/.local/share/lambda # Copy lambda to ~/.local/share #mkdir -p ~/.local/share/lambda