updates
This commit is contained in:
parent
e49f872029
commit
0e2d581a42
@ -4,6 +4,7 @@
|
||||
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
||||
|
||||
export _JAVA_AWT_WM_NOREPARENTING=1
|
||||
export PATH="$PATH:/opt/texlive/2023/bin/x86_64-linux/"
|
||||
|
||||
# SSHAGENT
|
||||
export SSH_AUTH_SOCK=${HOME}/.ssh/agent
|
||||
|
11
.bashrc
11
.bashrc
@ -219,19 +219,24 @@ alias xreinstall="doas xbps-install -f"
|
||||
alias xlu="xbps-install -Suvn" # list packages requiring updates
|
||||
|
||||
## random
|
||||
#alias vim="nvim"
|
||||
alias todo="vim ~/_todo.md"
|
||||
alias schm="~/.screenlayout/home.sh"
|
||||
alias sclp="~/.screenlayout/laptop.sh"
|
||||
|
||||
### bare git repo alias for dotfiles
|
||||
alias config="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
|
||||
|
||||
|
||||
# Exports
|
||||
export PATH="$PATH:$HOME/.cargo/bin"
|
||||
export PATH="$PATH:$HOME/.local/bin"
|
||||
export PATH="$PATH:/var/lib/flatpak/exports/bin"
|
||||
export PATH="$PATH:$HOME/.local/share/flatpak/exports/bin"
|
||||
export PATH="$PATH:/home/fr/git/microlab/wpa_tui/dmenu_scripts"
|
||||
|
||||
# Locales Exports
|
||||
export LC_ALL=en_US.UTF-8
|
||||
export LANG=en_US.UTF-8
|
||||
export LANGUAGE=en_US.UTF-8
|
||||
|
||||
# autologin on tty1
|
||||
# if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then
|
||||
@ -240,4 +245,4 @@ export PATH="$PATH:$HOME/.local/share/flatpak/exports/bin"
|
||||
|
||||
export $(dbus-launch)
|
||||
bash /home/fr/bara.sh
|
||||
#screenfetch
|
||||
|
||||
|
5
.config/nvim/lua/ftplugin/yaml.lua
Normal file
5
.config/nvim/lua/ftplugin/yaml.lua
Normal file
@ -0,0 +1,5 @@
|
||||
vim.o.tabstop = 2
|
||||
vim.o.softtabstop = 2
|
||||
vim.o.shiftwidth = 2
|
||||
vim.o.expandtab = true
|
||||
|
10
.config/nvim/lua/plugins/bufferline.lua
Normal file
10
.config/nvim/lua/plugins/bufferline.lua
Normal file
@ -0,0 +1,10 @@
|
||||
return {
|
||||
{
|
||||
'akinsho/bufferline.nvim',
|
||||
config = function()
|
||||
vim.opt.termguicolors = true
|
||||
require("bufferline").setup{}
|
||||
end
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user