Compare commits

..

No commits in common. "b6ccc2fda95098c55862a949f35ca2df10a3a138" and "4961e64c92a1d65cdf71214eb8d9a55181c64716" have entirely different histories.

3 changed files with 4 additions and 5 deletions

View File

@ -52,6 +52,7 @@ alias v="nvim"
#upgraded commands #upgraded commands
#alias cat="bat" #alias cat="bat"
alias htop="btop"
#alias ls="exa" #alias ls="exa"
#devleopment variables #devleopment variables
@ -69,7 +70,7 @@ alias i3blocksconfig="nvim ~/.config/i3blocks/config"
#development shortcuts #development shortcuts
alias lg="lazygit" alias lg="lazygit"
alias cfg='lazygit --git-dir=$HOME/.cfg --work-tree=$HOME' alias cfg="lazygit --git-dir=$HOME/.cfg --work-tree=$HOME"
alias nt="alacritty&" alias nt="alacritty&"
alias tn="tmux -u -f $TMUX_CONFIG new" alias tn="tmux -u -f $TMUX_CONFIG new"
alias ta="tmux -u -f $TMUX_CONFIG attach" alias ta="tmux -u -f $TMUX_CONFIG attach"

View File

@ -57,8 +57,6 @@ require('lazy').setup({
-- { "Olical/nfnl", ft = "fennel", opts = {} }, -- { "Olical/nfnl", ft = "fennel", opts = {} },
'Olical/aniseed', 'Olical/aniseed',
{ 'rcarriga/nvim-dap-ui', dependencies = { 'mfussenegger/nvim-dap', 'nvim-neotest/nvim-nio' } },
{ {
'smoka7/hop.nvim', 'smoka7/hop.nvim',
version = '*', version = '*',
@ -682,7 +680,7 @@ require('lazy').setup({
-- conjure -- conjure
{ {
'Olical/conjure', 'Olical/conjure',
ft = { 'clojure', 'fennel', 'python', 'lisp' }, -- etc ft = { 'clojure', 'fennel', 'python' }, -- etc
lazy = true, lazy = true,
init = function() init = function()
-- Set configuration options here -- Set configuration options here

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
PORT=$1 PORT=$1
kill -l $(lsof -t -i:$PORT) kill -9 $(lsof -t -i:$PORT)