Skip to content

Commit

Permalink
wip upd
Browse files Browse the repository at this point in the history
  • Loading branch information
A committed Jan 3, 2021
1 parent 70c7edb commit 61c018f
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 92 deletions.
50 changes: 0 additions & 50 deletions bin/analyze

This file was deleted.

2 changes: 0 additions & 2 deletions bin/mail-outlook

This file was deleted.

3 changes: 0 additions & 3 deletions bin/mail-yandex

This file was deleted.

21 changes: 0 additions & 21 deletions bin/node-battery.js

This file was deleted.

1 change: 1 addition & 0 deletions bin/powercat
8 changes: 8 additions & 0 deletions bin/status_bar
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
while :; do
CONNECTION=$(iwctl station wlan0 show | grep Connected | awk '{for (i=3; i<NF; i++) printf $i " "; print $NF}')
TIME=$(date +'%l:%M %p ')
BAT=$(~/.dotfiles/bin/powercat | cut -d' ' -f8,9)
echo "$CONNECTION | $TIME | $BAT "
sleep 5;
done;
6 changes: 0 additions & 6 deletions bin/stopwords

This file was deleted.

7 changes: 7 additions & 0 deletions bin/wifi_connection
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
while :; do
CONNECTION=$(iwctl station wlan0 show | grep Connected | awk '{for (i=3; i<NF; i++) printf $i " "; print $NF}')
TIME=$(date +'%l:%M %p ')
echo "$CONNECTION | $TIME"
sleep 5;
done;
14 changes: 7 additions & 7 deletions packages/config-nvim/plugins.vim
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ call plug#begin(g:config_dir . 'plugins')
Plug 'neoclide/coc-css', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-lists', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-highlight', {'do': 'yarn install --frozen-lockfile'}

Plug 'HerringtonDarkholme/yats.vim'
Plug 'mhartington/nvim-typescript', {'do': './install.sh'}
exec "so " . g:config_dir . 'plugin-settings/nvim-typescript.vim'
autocmd BufWrite *.ts,*.tsx TSGetDiagnostics


" Core
Plug 'Shougo/denite.nvim'
Plug 'dense-analysis/ale'
Expand All @@ -38,29 +38,29 @@ call plug#begin(g:config_dir . 'plugins')
Plug 'christoomey/vim-tmux-navigator'
Plug 'drzel/vim-line-no-indicator'
" Plug 'mhinz/vim-startify'

" Codding
Plug 'editorconfig/editorconfig-vim'
let g:EditorConfig_exclude_patterns = ['fugitive://.\*']
Plug 'chrisbra/Colorizer'
Plug 'tomtom/tcomment_vim'
Plug 'rstacruz/vim-closer'
Plug 'rstacruz/vim-hyperstyle'

" Git
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
set completeopt-=preview
Plug 'airblade/vim-gitgutter'
Plug 'rhysd/git-messenger.vim'
Plug 'chemzqm/denite-git'

" Markdown
Plug 'gabrielelana/vim-markdown'
Plug 'rhysd/vim-gfm-syntax'
let g:markdown_enable_mappings = 0
Plug 'ferrine/md-img-paste.vim'

" Plug 'a/vim-trash-polka'
Plug 'arcticicestudio/nord-vim'
exec "Plug " . "'" . g:config_dir . "local-plugins/vim-trash-polka'"
Expand Down
4 changes: 2 additions & 2 deletions packages/config-nvim/settings.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
let g:python_host_prog = '/usr/bin/python2.7'
let g:python_host_prog = '/usr/bin/python3'
let g:python2_host_prog = '/usr/bin/python2.7'
let g:python3_host_prog = '/usr/bin/python3.8'
let g:python3_host_prog = '/usr/bin/python3'

" Behavior
set nobackup
Expand Down
2 changes: 2 additions & 0 deletions packages/config-zsh/.exports
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ export FZF_DEFAULT_COMMAND='rg --files -u 2>&1'
export NOTES_DIR=~/Documents/Notes/
export UNSPLASH_DIR=~/Wallpapers/
export UNSPLASH_COLLECTION=8949349

export PATH=~/.cargo/bin/:$PATH
4 changes: 3 additions & 1 deletion packages/config-zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ source $ZDOTDIR/.exports
source ~/.exports

setopt inc_append_history
plugins=(git osx npm github yarn zsh-autosuggestions zsh-completions zsh-lerna taskwarrior)
plugins=(git osx npm github yarn zsh-autosuggestions zsh-completions docker docker-compose)

export COMPLETION_WAITING_DOTS="true"
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=1"
Expand All @@ -24,3 +24,5 @@ source $HOME/.oh-my-zsh/oh-my-zsh.sh
source $ZDOTDIR/.aliases
source $ZDOTDIR/prompt.zsh
# source $ZDOTDIR/background_jobs

command -v starship >/dev/null 2>&1 && eval "$(starship init zsh)"

0 comments on commit 61c018f

Please sign in to comment.