Compare commits

..

2 Commits

Author SHA1 Message Date
Thomas Avé fd3ea440c5 Update Lumentis links 2023-11-07 16:14:51 +01:00
Thomas Avé caef18ce13 Update micromamba config 2023-11-07 16:14:51 +01:00
2 changed files with 4 additions and 9 deletions

View File

@ -6,7 +6,7 @@ local conf = require("telescope.config").values
local wiki_utils = {}
local root_path = '/home/user/Workspace/DnD/Lumentis Campaign Setting'
local root_path = '/home/server/Workspace/DnD/Lumentis Campaign Setting'
local function get_title(file)
for line in io.lines(file) do
@ -30,7 +30,6 @@ local choose_link = function(opts, titles, links)
actions.select_default:replace(function()
actions.close(prompt_bufnr)
local selection = action_state.get_selected_entry()
-- print(vim.inspect(selection['index']))
vim.api.nvim_put({ links[selection['index']] }, "", false, true)
end)
return true

View File

@ -136,17 +136,13 @@ export GOPATH=/tmp/go
# >>> mamba initialize >>>
# !! Contents within this block are managed by 'mamba init' !!
export MAMBA_EXE="/usr/bin/micromamba";
export MAMBA_EXE="$HOME/.local/bin/micromamba";
export MAMBA_ROOT_PREFIX="$HOME/.micromamba";
__mamba_setup="$('/usr/bin/micromamba' shell hook --shell zsh --prefix '$HOME/.micromamba' 2> /dev/null)"
__mamba_setup="$("$MAMBA_EXE" shell hook --shell zsh --root-prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__mamba_setup"
else
if [ -f "$HOME/.micromamba/etc/profile.d/micromamba.sh" ]; then
. "$HOME/.micromamba/etc/profile.d/micromamba.sh"
else
export PATH="$HOME/.micromamba/bin:$PATH" # extra space after export prevents interference from conda init
fi
alias micromamba="$MAMBA_EXE" # Fallback on help from mamba activate
fi
unset __mamba_setup
# <<< mamba initialize <<<