1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Merge branch 'master' of github.com:aquatix/dotfiles

This commit is contained in:
2025-04-21 12:04:54 +02:00
6 changed files with 36 additions and 1 deletions

View File

@@ -220,3 +220,5 @@ export QT_AUTO_SCREEN_SCALE_FACTOR=1
[ -f ~/.fzf.bash ] && source ~/.fzf.bash [ -f ~/.fzf.bash ] && source ~/.fzf.bash
[ -f ~/.cargo/env ] && . "$HOME/.cargo/env" [ -f ~/.cargo/env ] && . "$HOME/.cargo/env"
[ -f ~/.local/bin/env ] && . "$HOME/.local/bin/env"

View File

@@ -16,3 +16,6 @@ dammIT
isso isso
diginaut diginaut
Pratchett Pratchett
jailbreaking
plugin
Readeck

View File

@@ -250,3 +250,5 @@ SSO-gebruikers
hacktop hacktop
computerwerk computerwerk
labwerk labwerk
PowerPoint
Kubuntu

6
.vimrc
View File

@@ -327,9 +327,13 @@ if !filereadable(skip_ycm) " Only load YouCompleteMe if ~/.dot_no_ycm does not
" sudo apt-get install python-dev " sudo apt-get install python-dev
" cd ~/.vim/bundle/YouCompleteMe " cd ~/.vim/bundle/YouCompleteMe
" ./install.py # For C-style languages: ./install.py --clang-completer " ./install.py # For C-style languages: ./install.py --clang-completer
if has('patch-8.1.2269') if has('patch-9.1.0016')
" Latest YCM needs at least this version of vim " Latest YCM needs at least this version of vim
Plug 'ycm-core/YouCompleteMe' Plug 'ycm-core/YouCompleteMe'
elseif has('8.2.3995')
Plug 'ycm-core/YouCompleteMe', { 'branch':'legacy-vim-8.2' }
elseif has('8.1.2269')
Plug 'ycm-core/YouCompleteMe', { 'branch':'legacy-vim-8.1' }
else else
" Version compatible with the vim in Debian 10 buster " Version compatible with the vim in Debian 10 buster
" Plug 'ycm-core/YouCompleteMe', { 'commit':'d98f896' } " Plug 'ycm-core/YouCompleteMe', { 'commit':'d98f896' }

View File

@@ -39,6 +39,21 @@ ln -s ../.dot/dotfiles/.config/starship.toml
``` ```
## All dependencies
To have the full experience, install all of these:
```bash
sudo apt install git curl vim-nox fzf ripgrep exuberant-ctags fish grc tmux htop direnv
# needed for building vim plugins:
sudo apt install cmake build-essentials
# also, this classic:
sudo apt install mc
```
and maybe install a nice colour theme for your terminal from https://gogh-co.github.io/Gogh/ - I use argonaut with a black background myself.
## vim config ## vim config
The [.vimrc](https://github.com/aquatix/dotfiles/blob/master/.vimrc) has a lot going on. [Find out more about my tweaks](https://dammit.nl/tag/vim.html) and use `:Maps` in vim itself to see key mappings The [.vimrc](https://github.com/aquatix/dotfiles/blob/master/.vimrc) has a lot going on. [Find out more about my tweaks](https://dammit.nl/tag/vim.html) and use `:Maps` in vim itself to see key mappings

View File

@@ -128,6 +128,15 @@ elif [ ! -e ~/.dot/.dot_no_fish ]; then
done done
fi fi
echo
echo "Do you wish to install the starship prompt?"
select yn in "Yes" "No"; do
case $yn in
Yes ) make_link $DIR ".config/starship.yml"; curl -sS https://starship.rs/install.sh | sh; break;;
No ) break;;
esac
done
if [ ! -e ~/.dot_is_server ] && [ ! -e ~/.dot_no_server ]; then if [ ! -e ~/.dot_is_server ] && [ ! -e ~/.dot_no_server ]; then
echo echo
echo "Is this machine a server?" echo "Is this machine a server?"