Compare commits
14 Commits
c7bc5d1f60
...
c8cf2c98da
Author | SHA1 | Date | |
---|---|---|---|
c8cf2c98da | |||
ae4ce36eb4 | |||
ed811bbae2 | |||
a756072b69 | |||
c6f5a7f87d | |||
a71abc3962 | |||
cb1a72d78d | |||
579bf63c92 | |||
8b9f8233f9 | |||
7cb2318610 | |||
85d31b4e87 | |||
7fcf02f968 | |||
fc4bfa54bf | |||
cbd00dd044 |
13
.bashrc
13
.bashrc
@ -104,6 +104,7 @@ alias xpg="lsof 2>/dev/null +D . | grep 'pg.*swp$' | awk '{print \$9}' | sed 's/
|
||||
alias xsw="lsof 2>/dev/null +D . | grep '.*swp$' | awk '{print \$9}' | sed 's/\.swp//g' | sed 's/\/\./\//g' | xargs -r $PG -f"
|
||||
alias ons='lsof +D ~/.local/state/nvim/swap/ | grep -o "/swap/.*" | cut -c 7- | tr "%" "/" | sed "s/\\.swp$//" | grep "$(pwd)"'
|
||||
alias xns='lsof +D ~/.local/state/nvim/swap/ | grep -o "/swap/.*" | cut -c 7- | tr "%" "/" | sed "s/\\.swp$//" | grep "$(pwd)" | fzf | xargs -I % $PG -f %'
|
||||
alias xnsp='lsof +D ~/.local/state/nvim/swap/ | grep -o "/swap/.*" | cut -c 7- | tr "%" "/" | sed "s/\\.swp$//" | grep "$(pwd)" | fzf | xargs -I % $PG -f % | pspg'
|
||||
alias mns='fzf | xargs -I {} sqlcmd.exe -S usmidsql01 -i {}'
|
||||
alias nv='~/nvim-linux64/bin/nvim'
|
||||
alias gs='git status -s'
|
||||
@ -112,6 +113,10 @@ alias gr='git reset HEAD'
|
||||
alias gc='git commit -v'
|
||||
alias gd='git difftool'
|
||||
alias gl='git log --graph --oneline --format="%C(yellow)%h %C(green)%an%Creset %C(blue)%ad%Creset %s"'
|
||||
vc() {
|
||||
git add .
|
||||
git commit -m "vault backup: $(date "+%Y-%m-%d %H:%M:%S")"
|
||||
}
|
||||
alias cj='cd ~/storage/shared/Documents/journal/'
|
||||
alias jr='cd ~/storage/shared/Documents/journal/ && git pull && vc && cd -'
|
||||
alias hc='cd ~/storage/shared/Documents/hc_notes/ && git pull && git push && cd -'
|
||||
@ -147,10 +152,10 @@ PAGER="less"
|
||||
LESS="-S"
|
||||
export PSQL_PAGER="pspg"
|
||||
|
||||
#if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then
|
||||
# GIT_PROMPT_ONLY_IN_REPO=1
|
||||
# source $HOME/.bash-git-prompt/gitprompt.sh
|
||||
#fi
|
||||
if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then
|
||||
GIT_PROMPT_ONLY_IN_REPO=1
|
||||
source $HOME/.bash-git-prompt/gitprompt.sh
|
||||
fi
|
||||
|
||||
bind 'set bell-style none'
|
||||
|
||||
|
@ -20,6 +20,8 @@
|
||||
directory = /var/www/html/resume
|
||||
directory = /opt/forecast_api/
|
||||
directory = /opt/forecast_api
|
||||
directory = /etc/postgresql/15/main/
|
||||
directory = /etc/postgresql/15/main
|
||||
directory = /storage/emulated/0/Documents/journal
|
||||
directory = /storage/emulated/0/Documents/hc_notes
|
||||
[pull]
|
||||
|
12
.pspgconf
12
.pspgconf
@ -13,7 +13,7 @@ force_uniborder = false
|
||||
show_rownum = false
|
||||
without_commandbar = false
|
||||
without_topbar = false
|
||||
vertical_cursor = false
|
||||
vertical_cursor = true
|
||||
on_sigint_exit = false
|
||||
no_sigint_search_reset = false
|
||||
double_header = false
|
||||
@ -25,10 +25,16 @@ menu_always = false
|
||||
empty_string_is_null = true
|
||||
last_row_search = true
|
||||
progressive_load_mode = true
|
||||
highlight_odd_rec = false
|
||||
highlight_odd_rec = true
|
||||
hide_header_line = false
|
||||
theme = 0
|
||||
on_exit_reset = false
|
||||
on_exit_clean = false
|
||||
on_exit_erase_line = false
|
||||
on_exit_sgr0 = false
|
||||
direct_color = false
|
||||
theme = 18
|
||||
border_type = 2
|
||||
default_clipboard_format = 0
|
||||
clipboard_app = 0
|
||||
hist_size = 500
|
||||
esc_delay = -1
|
||||
|
5
.psqlrc
5
.psqlrc
@ -2,3 +2,8 @@
|
||||
\set x '\\setenv PAGER ''less -S'''
|
||||
\set xx '\\setenv PAGER \'pspg -bX --no-mouse\''
|
||||
\timing on
|
||||
\set QUIET 1
|
||||
\pset linestyle unicode
|
||||
-- \pset border 2
|
||||
\pset null ∅
|
||||
\unset QUIET
|
||||
|
12
install_postgres.sh
Executable file
12
install_postgres.sh
Executable file
@ -0,0 +1,12 @@
|
||||
# Create the file repository configuration:
|
||||
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
||||
|
||||
# Import the repository signing key:
|
||||
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
||||
|
||||
# Update the package lists:
|
||||
sudo apt-get update
|
||||
|
||||
# Install the latest version of PostgreSQL.
|
||||
# If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql':
|
||||
sudo apt-get -y install postgresql
|
24
install_python3.sh
Executable file
24
install_python3.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Update the package list
|
||||
sudo apt-get update
|
||||
|
||||
# Install the software-properties-common package
|
||||
sudo apt-get install software-properties-common
|
||||
|
||||
# Add the deadsnakes PPA to the sources list
|
||||
sudo add-apt-repository ppa:deadsnakes/ppa
|
||||
|
||||
# Update the package list again
|
||||
sudo apt-get update
|
||||
|
||||
# Check the latest version of Python 3 available
|
||||
latest_version=$(apt-cache madison python3 | awk '{print $3}' | grep "^3\." | sort -V | tail -1)
|
||||
|
||||
# Install the latest version of Python 3
|
||||
sudo apt-get install -y python3=$latest_version
|
||||
|
||||
# Verify the installation
|
||||
python3 --version
|
||||
which python3
|
||||
|
1
nvchad.sh
Executable file
1
nvchad.sh
Executable file
@ -0,0 +1 @@
|
||||
git clone git@gitea.hptrow.me:pt/nvchad ~/.config/nvim
|
20
nvim_build.sh
Executable file
20
nvim_build.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Install dependencies
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip
|
||||
|
||||
# Clone the Neovim repository
|
||||
git clone https://github.com/neovim/neovim.git ~/neovim
|
||||
|
||||
# Navigate into the Neovim directory
|
||||
cd ~/neovim
|
||||
|
||||
# Checkout the latest release tag
|
||||
git checkout $(git describe --tags --abbrev=0)
|
||||
|
||||
# Build and install Neovim
|
||||
make CMAKE_BUILD_TYPE=Release
|
||||
sudo make install
|
||||
|
||||
cd -
|
Loading…
Reference in New Issue
Block a user