Compare commits

..

No commits in common. "c1005513481973383a59ac55f78ef13227478991" and "04e711f146d69d7251526dff2534d1643ed882af" have entirely different histories.

2 changed files with 3 additions and 1 deletions

View file

@ -10,7 +10,6 @@ bindkey -s '^O' 'cd ..\n'
# Vars # Vars
export GOPATH=$HOME/.local/go export GOPATH=$HOME/.local/go
export PATH=$PATH:$GOPATH/bin export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$HOME/.local/bin
export EDITOR=nvim export EDITOR=nvim
# History # History

View file

@ -63,3 +63,6 @@ vim.opt.signcolumn = "yes"
-- Always show tabline -- Always show tabline
vim.opt.laststatus = 2 vim.opt.laststatus = 2
-- Set _ as word separator
vim.opt.iskeyword:remove("_")