This commit is contained in:
Roland Thomas 2023-02-08 23:20:18 -05:00
parent 275d157702
commit c5e1c42cc4
4 changed files with 7 additions and 3 deletions

View File

@ -5,7 +5,6 @@ abbr ip 'ip --color=auto'
abbr gs 'git status' abbr gs 'git status'
abbr gcm 'git commit -m' abbr gcm 'git commit -m'
abbr config 'git --git-dir=$HOME/config-files/ --work-tree=$HOME'
abbr .. 'cd ..' abbr .. 'cd ..'
abbr vi 'vim' abbr vi 'vim'

View File

@ -1,13 +1,13 @@
# Exports
set --export EDITOR "vim" set --export EDITOR "vim"
set --export PF_INFO "ascii title os host kernel uptime pkgs memory wm shell editor palette" set --export PF_INFO "ascii title os host kernel uptime pkgs memory wm shell editor palette"
set -x MANPAGER "sh -c 'col -bx | bat -l man -p'"
if status is-interactive if status is-interactive
# Commands to run in interactive sessions can go here # Commands to run in interactive sessions can go here
end end
fish_add_path "$HOME/.local/bin" fish_add_path "$HOME/.local/bin"
export PYTHONPATH="$HOME/Documents/Course-Material/module-o/book/src"
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
source "$HOME/.config/fish/abbreviations.fish" source "$HOME/.config/fish/abbreviations.fish"

View File

@ -0,0 +1,3 @@
function cf
git --git-dir=$HOME/config-files --work-tree=$HOME $argv
end

2
.vimrc
View File

@ -18,6 +18,8 @@ Plug 'itchyny/lightline.vim'
Plug 'ap/vim-css-color' Plug 'ap/vim-css-color'
Plug 'ycm-core/YouCompleteMe' Plug 'ycm-core/YouCompleteMe'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-surround'
call plug#end() call plug#end()
colorscheme nord colorscheme nord