From 6a66e39f29f8bd1a7dce5e34c0790328f0e0db92 Mon Sep 17 00:00:00 2001 From: Abouzar Parvan Date: Thu, 28 Apr 2022 19:00:39 +0430 Subject: feat(icons): make it possible to disable icons (#2529) --- utils/installer/config.example.lua | 2 ++ utils/installer/config_win.example.lua | 2 ++ 2 files changed, 4 insertions(+) (limited to 'utils/installer') diff --git a/utils/installer/config.example.lua b/utils/installer/config.example.lua index 61c2f915..562d4060 100644 --- a/utils/installer/config.example.lua +++ b/utils/installer/config.example.lua @@ -12,6 +12,8 @@ an executable lvim.log.level = "warn" lvim.format_on_save = true lvim.colorscheme = "onedarker" +-- to disable icons and use a minimalist setup, uncomment the following +-- lvim.use_icons = false -- keymappings [view all the defaults by pressing Lk] lvim.leader = "space" diff --git a/utils/installer/config_win.example.lua b/utils/installer/config_win.example.lua index c6bf470e..b659263a 100644 --- a/utils/installer/config_win.example.lua +++ b/utils/installer/config_win.example.lua @@ -29,6 +29,8 @@ vim.g.clipboard = { lvim.log.level = "warn" lvim.format_on_save = true lvim.colorscheme = "onedarker" +-- to disable icons and use a minimalist setup, uncomment the following +-- lvim.use_icons = false -- keymappings [view all the defaults by pressing Lk] lvim.leader = "space" -- cgit v1.2.3 From ebc29873422a4cbd0cb2b3434ac5787b6e76b4cc Mon Sep 17 00:00:00 2001 From: lmckiwo <37028112+lmckiwo@users.noreply.github.com> Date: Sat, 30 Apr 2022 10:33:45 -0400 Subject: fix(installer): latest and specified release version for neovim have different urls (#2484) --- utils/installer/install-neovim-from-release | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'utils/installer') diff --git a/utils/installer/install-neovim-from-release b/utils/installer/install-neovim-from-release index e98b1aee..08f27149 100755 --- a/utils/installer/install-neovim-from-release +++ b/utils/installer/install-neovim-from-release @@ -23,7 +23,11 @@ else exit 1 fi -declare -r RELEASE_URL="https://github.com/neovim/neovim/releases/$RELEASE_VER/download/$ARCHIVE_NAME.tar.gz" +if [[ "${RELEASE_VER}" == "latest" ]]; then + declare -r RELEASE_URL="https://github.com/neovim/neovim/releases/${RELEASE_VER}/download/${ARCHIVE_NAME}.tar.gz" +else + declare -r RELEASE_URL="https://github.com/neovim/neovim/releases/download/${RELEASE_VER}/${ARCHIVE_NAME}.tar.gz" +fi declare -r CHECKSUM_URL="$RELEASE_URL.sha256sum" DOWNLOAD_DIR="$(mktemp -d)" -- cgit v1.2.3