Compare commits
2 commits
1c7837d29e
...
2687639d49
Author | SHA1 | Date | |
---|---|---|---|
2687639d49 | |||
d0baf861fd |
2 changed files with 7 additions and 5 deletions
|
@ -4,7 +4,6 @@ call plug#begin()
|
|||
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||
Plug 'https://gitlab.com/code-stats/code-stats-vim.git', {'do': ':TSUpdate'}
|
||||
Plug 'vim-airline/vim-airline', {'do': ':TSUpdate'}
|
||||
Plug 'catppuccin/nvim', {'as': 'catpputccin'}
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
|
11
profile
11
profile
|
@ -8,7 +8,6 @@ if test -z "${XDG_RUNTIME_DIR}"; then
|
|||
fi
|
||||
fi
|
||||
|
||||
export XDG_CURRENT_DESKTOP=sway
|
||||
|
||||
# The city's finest exports!
|
||||
export GIT_EDITOR="nvim"
|
||||
|
@ -18,6 +17,9 @@ export SCREENSHOT_DIR="$HOME/Screenshots"
|
|||
export LC_MESSAGES="C.UTF-8"
|
||||
export TERM="xterm-256color"
|
||||
|
||||
export NPM_CONFIG_PREFIX="$HOME/.local/"
|
||||
export PATH="$PATH:$NPM_CONFIG_PREFIX/bin"
|
||||
|
||||
# Let's get some private environment vars
|
||||
source $HOME/.config/private.env
|
||||
|
||||
|
@ -26,10 +28,11 @@ export LESSHISTFILE=-
|
|||
|
||||
# Launch sway!
|
||||
if [ -z "${WAYLAND_DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
||||
dbus-run-session sway
|
||||
export XDG_CURRENT_DESKTOP=sway
|
||||
dbus-run-session sway
|
||||
fi
|
||||
|
||||
alias ccat="highlight -O ansi $@"
|
||||
alias ls="ls -h --color=auto"
|
||||
alias ls="eza --time-style '+%Y.%m.%d %H.%M' --colour always --icons --group-directories-first --git $@"
|
||||
alias vim="nvim $@"
|
||||
alias wget="wget --hsts-file $HOME/.cache/wget/hsts"
|
||||
alias wget="wget --hsts-file $HOME/.cache/wget-hsts"
|
||||
|
|
Loading…
Reference in a new issue