diff --git a/home/.config/alacritty/alacritty.yml b/home/.config/alacritty/alacritty.yml index 75313a6..c84dcad 100644 --- a/home/.config/alacritty/alacritty.yml +++ b/home/.config/alacritty/alacritty.yml @@ -150,7 +150,7 @@ font: #style: Bold Italic # Point size - size: 11.0 + size: 7.0 # 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 diff --git a/home/.config/coc/extensions/package.json b/home/.config/coc/extensions/package.json index 91687c2..9aacf89 100644 --- a/home/.config/coc/extensions/package.json +++ b/home/.config/coc/extensions/package.json @@ -11,4 +11,4 @@ "coc-xml": ">=1.14.1", "coc-yaml": ">=1.3.1" } -} \ No newline at end of file +} diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index 1d0b9a0..7df1b5b 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -19,27 +19,27 @@ call plug#begin($HOME.'/.nvim/plugged') Plug 'morhetz/gruvbox' " color scheme -Plug 'airblade/vim-gitgutter' " show file changes for git VCS -Plug 'bronson/vim-trailing-whitespace' " per the name, remove trailing whitespace -Plug 'easymotion/vim-easymotion' " easy code navigation with -Plug 'editorconfig/editorconfig-vim' " EditorConfig support -Plug 'fatih/vim-go', { 'do': ':exec GoPostUpdate()' } " THE Go plugin -Plug 'junegunn/fzf', { 'do': { -> fzf#install } } " fast file name search -Plug 'majutsushi/tagbar' " class & variable lister -Plug 'mg979/vim-visual-multi', { 'branch': 'master' } " multi cursor support -Plug 'mhinz/vim-signify' " show file changes for pretty much any VCS -Plug 'mileszs/ack.vim' " easy code searching -Plug 'moll/vim-bbye' " Bdelete a buffer without removing the split -Plug 'neoclide/coc.nvim', {'branch': 'release'} " ezpz LSP support -Plug 'scrooloose/nerdcommenter' " perform quick comments with -Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " shows a directory view -Plug 'sheerun/vim-polyglot' " highlighting & indent for languages -Plug 'tpope/vim-fugitive' " awesome git support -Plug 'tpope/vim-sensible' " some obviously sane default config changes -Plug 'tpope/vim-surround' " easy surrounding modifier -Plug 'vim-airline/vim-airline' " nice lightweight status line -Plug 'vim-airline/vim-airline-themes' " themes for vim-airline -Plug 'w0rp/ale' " async linting engine +Plug 'airblade/vim-gitgutter' " show file changes for git VCS +Plug 'bronson/vim-trailing-whitespace' " per the name, remove trailing whitespace +Plug 'easymotion/vim-easymotion' " easy code navigation with +Plug 'editorconfig/editorconfig-vim' " EditorConfig support +Plug 'fatih/vim-go', { 'do': ':exec GoPostUpdate()' } " THE Go plugin +Plug 'junegunn/fzf', { 'do': { -> fzf#install } } " fast file name search +Plug 'majutsushi/tagbar' " class & variable lister +Plug 'mg979/vim-visual-multi', { 'branch': 'master' } " multi cursor support +Plug 'mhinz/vim-signify' " show file changes for pretty much any VCS +Plug 'mileszs/ack.vim' " easy code searching +Plug 'moll/vim-bbye' " Bdelete a buffer without removing the split +Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': { -> coc#util#install() }} " ezpz LSP support +Plug 'scrooloose/nerdcommenter' " perform quick comments with +Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " shows a directory view +Plug 'sheerun/vim-polyglot' " highlighting & indent for languages +Plug 'tpope/vim-fugitive' " awesome git support +Plug 'tpope/vim-sensible' " some obviously sane default config changes +Plug 'tpope/vim-surround' " easy surrounding modifier +Plug 'vim-airline/vim-airline' " nice lightweight status line +Plug 'vim-airline/vim-airline-themes' " themes for vim-airline +Plug 'w0rp/ale' " async linting engine call plug#end() diff --git a/home/.config/waybar/config b/home/.config/waybar/config index 66a6448..df69a2c 100644 --- a/home/.config/waybar/config +++ b/home/.config/waybar/config @@ -65,7 +65,7 @@ }, "clock": { "tooltip-format": "{:%Y %B}\n{calendar}", - "format": "{:%H:%M %m/%d/%y}" + "format": "{:%m/%d/%y %H:%M}" }, "cpu": { "format": "{usage}% ", diff --git a/home/.zshrc b/home/.zshrc index 2e636cf..5ac5e4e 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -7,6 +7,10 @@ if [ -d "${HOME}/bin" ]; then export PATH="${HOME}/bin:${PATH}" fi +if [ -d "${HOME}/.local/bin" ]; then + export PATH="${HOME}/.local/bin:$PATH" +fi + if command -v go &> /dev/null; then GOPATH="$(go env GOPATH)" if [ -d "${GOPATH}" ]; then @@ -15,6 +19,12 @@ if command -v go &> /dev/null; then fi fi +if (( $+commands[tag] )); then + export TAG_SEARCH_PROG=ag # replace with rg for ripgrep + tag() { command tag "$@"; source ${TAG_ALIAS_FILE:-/tmp/tag_aliases} 2>/dev/null } + alias ag=tag # replace with rg for ripgrep +fi + # oh-my-zsh { export ZSH="${HOME}/.oh-my-zsh"