From 154a0205200a14ccf5db0d6740a2bb1e4a92c50a Mon Sep 17 00:00:00 2001 From: spy Date: Sun, 17 Apr 2022 14:29:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20installer=20&=20README.?= =?UTF-8?q?md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++++++- install.sh | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) 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