Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install/kitty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ install_nerd_fonts() {
need_cmd unzip

local font_version
font_version="$(curl -fsSL https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest \
| sed -n 's/.*"tag_name": *"v\([^"]*\)".*/\1/p' | head -n 1)"
font_version="$(curl -fsSL -o /dev/null -w '%{url_effective}' \
https://github.com/ryanoasis/nerd-fonts/releases/latest | sed 's|.*/tag/v||')"
if [[ -z "${font_version}" ]]; then
echo "Error: failed to resolve latest Nerd Fonts release"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion install/lib/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ install_fzf() {
git clone --depth 1 https://github.com/junegunn/fzf.git "$HOME/.fzf"
fi

"$HOME/.fzf/install" --bin --no-update-rc
"$HOME/.fzf/install" --all
mkdir -p "${local_bin_dir}"
ln -sf "${fzf_target}" "${fzf_link}"
}
Expand Down
2 changes: 1 addition & 1 deletion install/nvim-bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ install_fzf() {
if [[ ! -d "$HOME/.fzf" ]]; then
git clone --depth 1 https://github.com/junegunn/fzf.git "$HOME/.fzf"
fi
"$HOME/.fzf/install" --bin --no-update-rc
"$HOME/.fzf/install" --all
mkdir -p "${LOCAL_BIN_DIR}"
ln -sf "$HOME/.fzf/bin/fzf" "${LOCAL_BIN_DIR}/fzf"
}
Expand Down
5 changes: 1 addition & 4 deletions nvim/lua/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ vim.diagnostic.config {
},
},
update_in_insert = true,
underline = true,
underline = false,
severity_sort = true,
float = {
focusable = false,
Expand Down Expand Up @@ -110,9 +110,6 @@ local servers = {
filetypes = { "python" },
cmd = { "basedpyright-langserver", "--stdio" },
settings = {
python = {
venvPath = vim.fn.expand "~" .. "/venv",
},
basedpyright = {
disableOrganizeImports = true,
analysis = {
Expand Down
2 changes: 1 addition & 1 deletion zk/templates/meeting.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Meeting with {{extra.attendees}}
title: Meeting with {{extra.attendees}} - {{format-date now}}
date: {{format-date now}}
tags: ["meeting","{{extra.attendees}}"]
---
Expand Down
Loading