Compare commits

..

No commits in common. "05c3181b036d9886558ea7b6dd157915524b0337" and "70b49eaa5a414ffee7b72e6cdfc2e933933a07c4" have entirely different histories.

5 changed files with 22 additions and 38 deletions

View file

@ -1,10 +1,3 @@
return {
{
"mickael-menu/zk-nvim",
config = function()
require("zk").setup({
-- See Setup section below
})
end,
},
{ "mickael-menu/zk-nvim" },
}

View file

@ -4,26 +4,21 @@ return {
opts = function()
local dashboard = require("alpha.themes.dashboard")
local logo = [[
]]
]]
dashboard.section.header.val = vim.split(logo, "\n")
math.randomseed(os.time())

View file

@ -0,0 +1,5 @@
# function pmodload {
# if you are using Prezto, you'll need an empty pmodload function
# }
# vim: ft=zsh sw=2 ts=2 et

View file

@ -1,9 +0,0 @@
#!/usr/bin/env zsh
##? create a new tmux session
##? use current directory name as a fallback
if [ -z "$1" ]; then
tmux new-session -s "${PWD:A:t2}"
else
tmux new-session -s "$1"
fi

View file

@ -3,6 +3,6 @@ alias t-labbook="$DOTFILES_DIR/tmux/labbook.sh"
alias tmux="tmux -f $HOME/.config/tmux/tmux.conf"
alias t='tmux'
alias ta='tmux attach -t'
# alias tn='tmux new-session -s'
alias tn='tmux new-session -s'
alias tl='tmux list-sessions'