Compare commits

...

5 Commits

Author SHA1 Message Date
bb4eb1f8c7 chore(nvim): don't show .null-ls_* 2023-08-13 17:26:01 +03:00
daff9f957a chore(brew): update brewfile 2023-08-13 17:25:25 +03:00
91c8410eb0 feat(tldr): switch to tealdeer from tldr 2023-08-13 17:23:37 +03:00
68bb53435d chore(config): cleanup configs, fixes 2023-08-13 17:21:53 +03:00
ivuorinen
cd5cea172a chore(git): Update submodules (automated)
tmux/tmux-autoreload v0.0.1
tmux/tmux-continuum v3.1.0
tmux/tmux-resurrect v4.0.0
tmux/tmux-sensible v3.0.0
tmux/tmux-sessionist v2.3.0
tmux/tmux-yank v2.3.0
tmux/vim-tmux-navigator v1.0
2023-08-13 03:04:40 +00:00
18 changed files with 65 additions and 18 deletions

View File

@@ -4,5 +4,3 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
alias php="php -d error_reporting=22527"

View File

@@ -17,6 +17,8 @@ export DOTFILES="$HOME/.dotfiles"
# shellcheck source=shared.sh # shellcheck source=shared.sh
source "$DOTFILES/scripts/shared.sh" source "$DOTFILES/scripts/shared.sh"
export HISTFILE="$XDG_STATE_HOME"/zsh/history
autoload -U colors zsh/terminfo autoload -U colors zsh/terminfo
colors colors
setopt correct setopt correct
@@ -32,7 +34,7 @@ compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"
if type brew &>/dev/null if type brew &>/dev/null
then then
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}" FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
compinit compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"
fi fi
# Run x-load-configs in your terminal to reload the files. # Run x-load-configs in your terminal to reload the files.

View File

@@ -57,6 +57,9 @@ return {
'.DS_Store', '.DS_Store',
'thumbs.db' 'thumbs.db'
}, },
never_show_by_pattern = { -- uses glob style patterns
".null-ls_*",
},
} }
return opts return opts

View File

@@ -3,6 +3,7 @@
# shellcheck enable=external-sources # shellcheck enable=external-sources
# shellcheck disable=1091,2139 # shellcheck disable=1091,2139
# vim: filetype=zsh # vim: filetype=zsh
export DOTFILES="$HOME/.dotfiles"
source "$DOTFILES/scripts/shared.sh" source "$DOTFILES/scripts/shared.sh"
# Antigen configuration # Antigen configuration
@@ -123,6 +124,9 @@ export SCREENRC="$XDG_CONFIG_HOME/misc/screenrc"
# sonarlint # sonarlint
export SONARLINT_USER_HOME="$XDG_DATA_HOME/sonarlint" export SONARLINT_USER_HOME="$XDG_DATA_HOME/sonarlint"
# tldr / tealdeer
export TEALDEER_CONFIG_DIR="$XDG_CONFIG_HOME/tealdeer/"
# tmux # tmux
export TMUX_CONF="$XDG_CONFIG_HOME/tmux/tmux.conf" export TMUX_CONF="$XDG_CONFIG_HOME/tmux/tmux.conf"

View File

@@ -2,6 +2,7 @@
# shellcheck shell=bash # shellcheck shell=bash
# shellcheck disable=1091,2046 # shellcheck disable=1091,2046
# vim: filetype=zsh # vim: filetype=zsh
export DOTFILES="$HOME/.dotfiles"
source "$DOTFILES/scripts/shared.sh" source "$DOTFILES/scripts/shared.sh"
export LC_ALL=fi_FI.UTF-8 export LC_ALL=fi_FI.UTF-8

View File

@@ -3,6 +3,7 @@
# shell functions # shell functions
# #
# shellcheck source="../scripts/shared.sh" # shellcheck source="../scripts/shared.sh"
export DOTFILES="$HOME/.dotfiles"
source "$DOTFILES/scripts/shared.sh" source "$DOTFILES/scripts/shared.sh"
# Weather in Tampere, or other city # Weather in Tampere, or other city

View File

@@ -125,7 +125,7 @@ brew "fzf"
# Graphics library to dynamically manipulate images # Graphics library to dynamically manipulate images
brew "gd" brew "gd"
# Disk usage analyzer with console interface written in Go # Disk usage analyzer with console interface written in Go
brew "gdu" brew "gdu", link: false
# GitHub command-line tool # GitHub command-line tool
brew "gh" brew "gh"
# Distributed revision control system # Distributed revision control system
@@ -184,6 +184,8 @@ brew "jq"
brew "krb5" brew "krb5"
# Lazier way to manage everything docker # Lazier way to manage everything docker
brew "lazydocker" brew "lazydocker"
# Postgres C API library
brew "libpq"
# Linguistic software and Finnish dictionary # Linguistic software and Finnish dictionary
brew "libvoikko" brew "libvoikko"
# Rainbows and unicorns in your console! # Rainbows and unicorns in your console!
@@ -246,6 +248,8 @@ brew "subversion"
brew "task" brew "task"
# Terminal user interface for taskwarrior # Terminal user interface for taskwarrior
brew "taskwarrior-tui" brew "taskwarrior-tui"
# Very fast implementation of tldr in Rust
brew "tealdeer"
# Send macOS User Notifications from the command-line # Send macOS User Notifications from the command-line
brew "terminal-notifier" brew "terminal-notifier"
# Thin wrapper for Terraform e.g. for locking state # Thin wrapper for Terraform e.g. for locking state
@@ -258,8 +262,6 @@ brew "tfenv"
brew "tfsec" brew "tfsec"
# Programmatically correct mistyped console commands # Programmatically correct mistyped console commands
brew "thefuck" brew "thefuck"
# Simplified and community-driven man pages
brew "tldr"
# Terminal multiplexer # Terminal multiplexer
brew "tmux" brew "tmux"
# Display directories as trees (with optional color/HTML output) # Display directories as trees (with optional color/HTML output)
@@ -279,7 +281,7 @@ brew "wget"
# Personal information dashboard for your terminal # Personal information dashboard for your terminal
brew "wtfutil" brew "wtfutil"
# Check your $HOME for unwanted files and directories # Check your $HOME for unwanted files and directories
brew "xdg-ninja" brew "xdg-ninja", args: ["HEAD"]
# Hackable, minimal, fast TUI file explorer # Hackable, minimal, fast TUI file explorer
brew "xplr" brew "xplr"
# JavaScript package manager # JavaScript package manager
@@ -463,6 +465,7 @@ vscode "msjsdiag.vscode-react-native"
vscode "mtxr.sqltools" vscode "mtxr.sqltools"
vscode "neilbrayfield.php-docblocker" vscode "neilbrayfield.php-docblocker"
vscode "nhoizey.gremlins" vscode "nhoizey.gremlins"
vscode "octref.vetur"
vscode "oderwat.indent-rainbow" vscode "oderwat.indent-rainbow"
vscode "pflannery.vscode-versionlens" vscode "pflannery.vscode-versionlens"
vscode "phiter.phpstorm-snippets" vscode "phiter.phpstorm-snippets"
@@ -476,7 +479,6 @@ vscode "valeryanm.vscode-phpsab"
vscode "Vue.volar" vscode "Vue.volar"
vscode "Vue.vscode-typescript-vue-plugin" vscode "Vue.vscode-typescript-vue-plugin"
vscode "WakaTime.vscode-wakatime" vscode "WakaTime.vscode-wakatime"
vscode "withfig.fig"
vscode "wix.vscode-import-cost" vscode "wix.vscode-import-cost"
vscode "xdebug.php-debug" vscode "xdebug.php-debug"
vscode "xdebug.php-pack" vscode "xdebug.php-pack"

View File

@@ -4,5 +4,4 @@ editorconfig-checker
github-release-notes github-release-notes
neovim neovim
stylelint-lsp stylelint-lsp
tldr

View File

@@ -0,0 +1,38 @@
[style.description]
underline = false
bold = false
italic = false
[style.command_name]
foreground = "cyan"
underline = false
bold = false
italic = false
[style.example_text]
foreground = "green"
underline = false
bold = false
italic = false
[style.example_code]
foreground = "cyan"
underline = false
bold = false
italic = false
[style.example_variable]
foreground = "cyan"
underline = true
bold = false
italic = false
[display]
compact = false
use_pager = false
[updates]
auto_update = false
auto_update_interval_hours = 720
[directories]

View File

@@ -23,7 +23,7 @@ set -g @tpm_plugins ' \
' '
# Set plugins install dir # Set plugins install dir
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.dotfiles/config/tmux/plugins/' set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.dotfiles/config/tmux/plugins'
set-option -sa terminal-overrides ",xterm*:Tc" set-option -sa terminal-overrides ",xterm*:Tc"

View File

@@ -32,7 +32,6 @@
glob: true glob: true
path: local/bin/** path: local/bin/**
~/.ssh/: ~/.ssh/:
force: true
glob: true glob: true
mode: 0600 mode: 0600
path: ssh/** path: ssh/**