mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-24 14:56:29 +00:00
Update dotfiles
This commit is contained in:
parent
0166446504
commit
769dc7acd4
6 changed files with 57 additions and 37 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -7,3 +7,9 @@
|
||||||
[submodule "entropy/mail/neomutt/themes/dracula"]
|
[submodule "entropy/mail/neomutt/themes/dracula"]
|
||||||
path = entropy/mail/neomutt/themes/dracula
|
path = entropy/mail/neomutt/themes/dracula
|
||||||
url = https://github.com/dracula/mutt.git
|
url = https://github.com/dracula/mutt.git
|
||||||
|
[submodule "tycho/mail/themes/powerline"]
|
||||||
|
path = tycho/mail/themes/powerline
|
||||||
|
url = git@github.com:sheoak/neomutt-powerline-nerdfonts.git
|
||||||
|
[submodule "tycho/mail/neomutt/themes"]
|
||||||
|
path = tycho/mail/neomutt/themes
|
||||||
|
url = git@github.com:sheoak/neomutt-powerline-nerdfonts.git
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[user]
|
[user]
|
||||||
name = Felix Wittwer
|
name = Felix Wittwer
|
||||||
email = dev@felixwittwer.de
|
email = dev@felixwittwer.de
|
||||||
signingkey = EA0E8A99
|
signingkey = F8634A1CFF7D61608503A70B24363525EA0E8A99
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
[commit]
|
[commit]
|
||||||
|
|
26
tycho/.vimrc
26
tycho/.vimrc
|
@ -4,7 +4,8 @@ syntax on
|
||||||
" enable autocompletion of ale
|
" enable autocompletion of ale
|
||||||
let g:ale_completion_enabled = 1
|
let g:ale_completion_enabled = 1
|
||||||
" disable latex linting from ale as i've got my own plugin for that
|
" disable latex linting from ale as i've got my own plugin for that
|
||||||
let g:ale_linters = { 'tex': []}
|
let g:ale_linters = {'rust': ['analyzer'], 'tex': []}
|
||||||
|
let g:ale_fixers = {'c': ['clang-format']}
|
||||||
|
|
||||||
|
|
||||||
" Initialize plugin system
|
" Initialize plugin system
|
||||||
|
@ -32,6 +33,7 @@ Plug 'justinmk/vim-sneak'
|
||||||
Plug 'lervag/vimtex'
|
Plug 'lervag/vimtex'
|
||||||
Plug 'editorconfig/editorconfig-vim'
|
Plug 'editorconfig/editorconfig-vim'
|
||||||
Plug 'LnL7/vim-nix'
|
Plug 'LnL7/vim-nix'
|
||||||
|
Plug 'xevz/vim-squirrel'
|
||||||
Plug 'preservim/nerdtree'
|
Plug 'preservim/nerdtree'
|
||||||
|
|
||||||
" Plugin outside ~/.vim/plugged with post-update hook
|
" Plugin outside ~/.vim/plugged with post-update hook
|
||||||
|
@ -50,7 +52,20 @@ call plug#end()
|
||||||
|
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
let g:airline#extensions#tabline#enabled = 1
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
let g:airline_powerline_fonts = 1
|
"let g:airline_powerline_fonts = 1
|
||||||
|
|
||||||
|
" window switching by #
|
||||||
|
let g:airline_section_c = '[%{winnr()}] %t'
|
||||||
|
nnoremap <space>1 1<C-w>w
|
||||||
|
nnoremap <space>2 2<C-w>w
|
||||||
|
nnoremap <space>3 3<C-w>w
|
||||||
|
nnoremap <space>4 4<C-w>w
|
||||||
|
nnoremap <space>5 5<C-w>w
|
||||||
|
nnoremap <space>6 6<C-w>w
|
||||||
|
nnoremap <space>7 7<C-w>w
|
||||||
|
nnoremap <space>8 8<C-w>w
|
||||||
|
nnoremap <space>9 9<C-w>w
|
||||||
|
nnoremap <space>0 10<C-w>w
|
||||||
|
|
||||||
" possible setting as alternative for easymotion
|
" possible setting as alternative for easymotion
|
||||||
" let g:sneak#label = 1
|
" let g:sneak#label = 1
|
||||||
|
@ -60,10 +75,6 @@ set backspace=indent,eol,start
|
||||||
" map the leader key to ,
|
" map the leader key to ,
|
||||||
let mapleader=","
|
let mapleader=","
|
||||||
|
|
||||||
" set filetypes
|
|
||||||
au BufRead,BufNewFile *.ohuac setfiletype rust
|
|
||||||
au BufRead,BufNewFile *.ohuao setfiletype json
|
|
||||||
|
|
||||||
" Cycling through windows and tabs -- made by Pius :D
|
" Cycling through windows and tabs -- made by Pius :D
|
||||||
" nnoremap j <C-W><C-J>
|
" nnoremap j <C-W><C-J>
|
||||||
" nnoremap k <C-W><C-K>
|
" nnoremap k <C-W><C-K>
|
||||||
|
@ -104,6 +115,9 @@ set tabstop=4
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
set expandtab
|
set expandtab
|
||||||
|
|
||||||
|
" keep 5 lines of context above/below the cursor (if possible)
|
||||||
|
set scrolloff=5
|
||||||
|
|
||||||
" Search
|
" Search
|
||||||
set hlsearch " Highlight all search results
|
set hlsearch " Highlight all search results
|
||||||
set smartcase " Enable smart-case search
|
set smartcase " Enable smart-case search
|
||||||
|
|
|
@ -49,7 +49,7 @@ sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.serve
|
||||||
|
|
||||||
|
|
||||||
printf "\033[33m[info] Linking config files\033[39m"
|
printf "\033[33m[info] Linking config files\033[39m"
|
||||||
ln -s $pwd/.gitconfig ~/.gitconfig
|
ln -s $PWD/.gitconfig ~/.gitconfig
|
||||||
ln -s $PWD/.global_gitignore ~/.global_gitignore
|
ln -s $PWD/.global_gitignore ~/.global_gitignore
|
||||||
ln -s $PWD/git-commit-template.txt ~/.gitcommit_template
|
ln -s $PWD/git-commit-template.txt ~/.gitcommit_template
|
||||||
|
|
||||||
|
@ -74,30 +74,32 @@ if test ! $(which nix-env); then
|
||||||
curl -L https://nixos.org/nix/install | sh
|
curl -L https://nixos.org/nix/install | sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# TODO: Need to source?
|
||||||
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
|
||||||
|
nix-channel --update
|
||||||
|
|
||||||
printf "\033[33m[info] Installing some basic binaries\033[39m"
|
printf "\033[33m[info] Installing some basic binaries\033[39m"
|
||||||
brew install fish
|
brew install fish
|
||||||
|
sudo echo "/usr/local/bin/fish" >> /etc/shells
|
||||||
chsh -s /usr/local/bin/fish
|
chsh -s /usr/local/bin/fish
|
||||||
|
|
||||||
binaries=(
|
binaries=(
|
||||||
pass
|
pass
|
||||||
python
|
|
||||||
git
|
git
|
||||||
|
keepingyouawake
|
||||||
|
alacritty
|
||||||
|
starship
|
||||||
|
lsd
|
||||||
|
bat
|
||||||
|
homebrew/cask-fonts/font-hack-nerd-font
|
||||||
|
homebrew/cask-versions/firefox-nightly
|
||||||
)
|
)
|
||||||
|
|
||||||
brew install ${binaries[@]}
|
brew install ${binaries[@]}
|
||||||
|
|
||||||
apps=(
|
|
||||||
kitty
|
|
||||||
font-hack-nerd-font
|
|
||||||
keepingyouawake
|
|
||||||
)
|
|
||||||
|
|
||||||
brew cask install ${apps[@]}
|
|
||||||
|
|
||||||
|
|
||||||
printf "\033[33m[info] Cloning password store\033[39m"
|
printf "\033[33m[info] Cloning password store\033[39m"
|
||||||
git clone felix@decima:~/pass-backup ~/.password_store
|
git clone felix@decima:~/pass-backup ~/.password-store
|
||||||
|
|
||||||
|
|
||||||
printf "\033[33m[info] Setting up neomutt\033[39m"
|
printf "\033[33m[info] Setting up neomutt\033[39m"
|
||||||
|
|
|
@ -21,6 +21,13 @@ window:
|
||||||
columns: 0
|
columns: 0
|
||||||
lines: 0
|
lines: 0
|
||||||
|
|
||||||
|
# Background opacity
|
||||||
|
#
|
||||||
|
# Window opacity as a floating point number from `0.0` to `1.0`.
|
||||||
|
# The value `0.0` is completely transparent and `1.0` is opaque.
|
||||||
|
opacity: 1.0
|
||||||
|
|
||||||
|
|
||||||
# Window position (changes require restart)
|
# Window position (changes require restart)
|
||||||
#
|
#
|
||||||
# Specified in number of pixels.
|
# Specified in number of pixels.
|
||||||
|
@ -34,8 +41,8 @@ window:
|
||||||
# Blank space added around the window in pixels. This padding is scaled
|
# Blank space added around the window in pixels. This padding is scaled
|
||||||
# by DPI and the specified value is always added at both opposing sides.
|
# by DPI and the specified value is always added at both opposing sides.
|
||||||
padding:
|
padding:
|
||||||
x: 10
|
x: 0
|
||||||
y: 10
|
y: 0
|
||||||
|
|
||||||
# Spread additional padding evenly around the terminal content.
|
# Spread additional padding evenly around the terminal content.
|
||||||
dynamic_padding: false
|
dynamic_padding: false
|
||||||
|
@ -49,7 +56,7 @@ window:
|
||||||
# Values for `decorations` (macOS only):
|
# Values for `decorations` (macOS only):
|
||||||
# - transparent: Title bar, transparent background and title bar buttons
|
# - transparent: Title bar, transparent background and title bar buttons
|
||||||
# - buttonless: Title bar, transparent background, but no title bar buttons
|
# - buttonless: Title bar, transparent background, but no title bar buttons
|
||||||
decorations: none
|
decorations: full
|
||||||
|
|
||||||
# Startup Mode (changes require restart)
|
# Startup Mode (changes require restart)
|
||||||
#
|
#
|
||||||
|
@ -98,7 +105,9 @@ font:
|
||||||
# - (macOS) Menlo
|
# - (macOS) Menlo
|
||||||
# - (Linux) monospace
|
# - (Linux) monospace
|
||||||
# - (Windows) Consolas
|
# - (Windows) Consolas
|
||||||
family: "Hack Nerd Font"
|
family: "Iosevka Term Medium"
|
||||||
|
#family: "Hack Nerd Font"
|
||||||
|
#family: "Menlo"
|
||||||
|
|
||||||
# The `style` can be specified to pick a specific face.
|
# The `style` can be specified to pick a specific face.
|
||||||
#style: Regular
|
#style: Regular
|
||||||
|
@ -137,7 +146,7 @@ font:
|
||||||
#style: Bold Italic
|
#style: Bold Italic
|
||||||
|
|
||||||
# Point size
|
# Point size
|
||||||
size: 11.0
|
size: 12.0
|
||||||
|
|
||||||
# Offset is the extra space around each character. `offset.y` can be thought of
|
# Offset is the extra space around each character. `offset.y` can be thought of
|
||||||
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
||||||
|
@ -275,12 +284,6 @@ bell:
|
||||||
duration: 0
|
duration: 0
|
||||||
color: '0xffffff'
|
color: '0xffffff'
|
||||||
|
|
||||||
# Background opacity
|
|
||||||
#
|
|
||||||
# Window opacity as a floating point number from `0.0` to `1.0`.
|
|
||||||
# The value `0.0` is completely transparent and `1.0` is opaque.
|
|
||||||
background_opacity: 1.0
|
|
||||||
|
|
||||||
selection:
|
selection:
|
||||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
||||||
|
|
||||||
|
|
|
@ -11,13 +11,8 @@ export LC_ALL="en_GB.UTF-8"
|
||||||
|
|
||||||
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Library/TeX/texbin:$HOME/.cargo/bin:$HOME/.local/bin:$HOME/Library/Python/3.8/bin"
|
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Library/TeX/texbin:$HOME/.cargo/bin:$HOME/.local/bin:$HOME/Library/Python/3.8/bin"
|
||||||
|
|
||||||
export GOPATH="/Users/felix/.gostuff"
|
|
||||||
|
|
||||||
# FUCK configuration
|
|
||||||
thefuck --alias | source
|
|
||||||
|
|
||||||
# kitty terminal emulator auto completion
|
# kitty terminal emulator auto completion
|
||||||
kitty + complete setup fish | source
|
# kitty + complete setup fish | source
|
||||||
|
|
||||||
# fancier ls
|
# fancier ls
|
||||||
alias ls="lsd"
|
alias ls="lsd"
|
||||||
|
@ -29,7 +24,7 @@ alias code="codium"
|
||||||
alias fsrpass="env PASSWORD_STORE_DIR=/Users/felix/fsr/passwords pass"
|
alias fsrpass="env PASSWORD_STORE_DIR=/Users/felix/fsr/passwords pass"
|
||||||
|
|
||||||
## some aliases taken from old zshrc
|
## some aliases taken from old zshrc
|
||||||
alias full-update="brew update; brew upgrade; brew cleanup; apm update --confirm false; rustup self update; rustup update"
|
alias full-update="brew update; brew upgrade; brew cleanup; rustup self update; rustup update"
|
||||||
alias l="lsd -la"
|
alias l="lsd -la"
|
||||||
alias calculator="python3 -i -c 'from math import *'"
|
alias calculator="python3 -i -c 'from math import *'"
|
||||||
alias music="screen -dR music cmus"
|
alias music="screen -dR music cmus"
|
||||||
|
@ -66,4 +61,4 @@ end
|
||||||
set fish_function_path $fish_function_path $HOME/.config/fish/plugin-foreign-env/functions
|
set fish_function_path $fish_function_path $HOME/.config/fish/plugin-foreign-env/functions
|
||||||
|
|
||||||
# initialize nix
|
# initialize nix
|
||||||
fenv source '$HOME/.nix-profile/etc/profile.d/nix.sh'
|
fenv source '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
|
||||||
|
|
Loading…
Reference in a new issue