mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-02 20:48:03 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb4eb1f8c7 | |||
| daff9f957a | |||
| 91c8410eb0 | |||
| 68bb53435d | |||
|
|
cd5cea172a |
@@ -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"
|
|
||||||
|
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ editorconfig-checker
|
|||||||
github-release-notes
|
github-release-notes
|
||||||
neovim
|
neovim
|
||||||
stylelint-lsp
|
stylelint-lsp
|
||||||
tldr
|
|
||||||
|
|
||||||
|
|||||||
38
config/tealdeer/config.toml
Normal file
38
config/tealdeer/config.toml
Normal 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]
|
||||||
Submodule config/tmux/plugins/tmux-autoreload updated: e98aa3b74c...f8a8318844
Submodule config/tmux/plugins/tmux-continuum updated: 3e4bc35da4...46e0e00234
Submodule config/tmux/plugins/tmux-resurrect updated: cff343cf9e...e87d7d592c
Submodule config/tmux/plugins/tmux-sensible updated: 25cb91f42d...2ce7679f9d
Submodule config/tmux/plugins/tmux-sessionist updated: a315c42332...fdd0876f6f
Submodule config/tmux/plugins/tmux-yank updated: acfd36e4fc...fd8000238b
Submodule config/tmux/plugins/vim-tmux-navigator updated: cdd66d6a37...85b8e5f60c
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -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/**
|
||||||
|
|||||||
Reference in New Issue
Block a user