Compare commits
2 Commits
bc7ce79c20
...
fd3ea440c5
Author | SHA1 | Date |
---|---|---|
|
fd3ea440c5 | |
|
caef18ce13 |
|
@ -6,7 +6,7 @@ local conf = require("telescope.config").values
|
||||||
|
|
||||||
local wiki_utils = {}
|
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)
|
local function get_title(file)
|
||||||
for line in io.lines(file) do
|
for line in io.lines(file) do
|
||||||
|
@ -30,7 +30,6 @@ local choose_link = function(opts, titles, links)
|
||||||
actions.select_default:replace(function()
|
actions.select_default:replace(function()
|
||||||
actions.close(prompt_bufnr)
|
actions.close(prompt_bufnr)
|
||||||
local selection = action_state.get_selected_entry()
|
local selection = action_state.get_selected_entry()
|
||||||
-- print(vim.inspect(selection['index']))
|
|
||||||
vim.api.nvim_put({ links[selection['index']] }, "", false, true)
|
vim.api.nvim_put({ links[selection['index']] }, "", false, true)
|
||||||
end)
|
end)
|
||||||
return true
|
return true
|
||||||
|
|
10
zsh/.zshrc
10
zsh/.zshrc
|
@ -136,17 +136,13 @@ export GOPATH=/tmp/go
|
||||||
|
|
||||||
# >>> mamba initialize >>>
|
# >>> mamba initialize >>>
|
||||||
# !! Contents within this block are managed by 'mamba init' !!
|
# !! 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";
|
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
|
if [ $? -eq 0 ]; then
|
||||||
eval "$__mamba_setup"
|
eval "$__mamba_setup"
|
||||||
else
|
else
|
||||||
if [ -f "$HOME/.micromamba/etc/profile.d/micromamba.sh" ]; then
|
alias micromamba="$MAMBA_EXE" # Fallback on help from mamba activate
|
||||||
. "$HOME/.micromamba/etc/profile.d/micromamba.sh"
|
|
||||||
else
|
|
||||||
export PATH="$HOME/.micromamba/bin:$PATH" # extra space after export prevents interference from conda init
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
unset __mamba_setup
|
unset __mamba_setup
|
||||||
# <<< mamba initialize <<<
|
# <<< mamba initialize <<<
|
||||||
|
|
Loading…
Reference in New Issue