Skip to content

Commit

Permalink
Several minor adjustments etc
Browse files Browse the repository at this point in the history
  • Loading branch information
karlmutch committed Sep 10, 2021
1 parent 41e4aa7 commit 11ce6e4
Show file tree
Hide file tree
Showing 41 changed files with 46 additions and 43 deletions.
8 changes: 4 additions & 4 deletions Xdefaults
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ URxvt*letterSpace: 0
!

*font: \
xft:Iosevka Term:size=13:regular:antialias=true
xft:Iosevka Term:size=18:regular:antialias=true

*boldFont: \
xft:Iosevka Term:size=13:medium:antialias=true
xft:Iosevka Term:size=18:medium:antialias=true

*italicFont: \
xft:Iosevka Term:size=13:italic:antialias=true
xft:Iosevka Term:size=18:italic:antialias=true

*boldItalicFont: \
xft:Iosevka Term:size=13:medium italic:antialias=true
xft:Iosevka Term:size=18:medium italic:antialias=true
4 changes: 2 additions & 2 deletions config/termite/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[options]
font = monospace 13
font = monospace 18
scroll_on_output = false
scroll_on_keystroke = true
audible_bell = false
Expand All @@ -12,7 +12,7 @@ urgent_on_bell = true
scrollback_lines = 1000
search_wrap = true
#icon_name = terminal
geometry = 800x600
geometry = 1024X768

# "system", "on" or "off"
cursor_blink = system
Expand Down
1 change: 1 addition & 0 deletions install.conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
- ["cd ~/tmp/go && GOPATH=~/tmp/go GOROOT=~/go GOBIN=~/bin ~/go/bin/go get -f -u github.com/ueokande/logbook"]
- ["cd ~/tmp/go && GOPATH=~/tmp/go GOROOT=~/go GOBIN=~/bin ~/go/bin/go get -f -u github.com/jesseduffield/lazydocker"]
- ["cd ~/tmp/go && GOPATH=~/tmp/go GOROOT=~/go GOBIN=~/bin ~/go/bin/go get -f -u github.com/wallix/awless"]
- ["cd ~/tmp/go && GOPATH=~/tmp/go GOROOT=~/go GOBIN=~/bin ~/go/bin/go get -f -u github.com/oligot/go-mod-upgrade"]
- ["rm -rf ~/tmp/go"]
- ["mkdir -p ~/tmp/go/bin"]
- ["mkdir -p ~/tmp/go/src"]
Expand Down
2 changes: 1 addition & 1 deletion oh-my-zsh
Submodule oh-my-zsh updated from 6fbad5 to 37a60e
1 change: 1 addition & 0 deletions ripgreprc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Using glob patterns to include/exclude files or folders
--glob=!git/*
--glob=!vendor/*
--glob=!reports/*
--glob=!examples/aws/aws/dist/*

# Don't let ripgrep vomit really long lines to my terminal, and show a preview.
Expand Down
2 changes: 1 addition & 1 deletion tmux/plugins/tpm
2 changes: 1 addition & 1 deletion vim/bundle/Dockerfile.vim
2 changes: 1 addition & 1 deletion vim/bundle/Recover.vim
2 changes: 1 addition & 1 deletion vim/bundle/bufexplorer
Submodule bufexplorer updated 1 files
+1 −1 README.md
2 changes: 1 addition & 1 deletion vim/bundle/ctrlp.vim
Submodule ctrlp.vim updated 1 files
+1 −1 readme.md
2 changes: 1 addition & 1 deletion vim/bundle/nerdtree
2 changes: 1 addition & 1 deletion vim/bundle/supertab
Submodule supertab updated 1 files
+1 −1 README.rst
2 changes: 1 addition & 1 deletion vim/bundle/syntastic
2 changes: 1 addition & 1 deletion vim/bundle/syntax
Submodule syntax updated 1 files
+21 −0 LICENSE
2 changes: 1 addition & 1 deletion vim/bundle/tagbar
2 changes: 1 addition & 1 deletion vim/bundle/unicode.vim
2 changes: 1 addition & 1 deletion vim/bundle/vim-airline
2 changes: 1 addition & 1 deletion vim/bundle/vim-airline-themes
2 changes: 1 addition & 1 deletion vim/bundle/vim-colortemplate
2 changes: 1 addition & 1 deletion vim/bundle/vim-devicons
2 changes: 1 addition & 1 deletion vim/bundle/vim-fugitive
2 changes: 1 addition & 1 deletion vim/bundle/vim-gitgutter
2 changes: 1 addition & 1 deletion vim/bundle/vim-go
Submodule vim-go updated 49 files
+5 −2 .github/ISSUE_TEMPLATE.md
+2 −2 .github/workflows/test.yml
+63 −0 CHANGELOG.md
+1 −1 Dockerfile
+8 −3 README.md
+0 −1 autoload/go/cmd_test.vim
+11 −7 autoload/go/config.vim
+1 −1 autoload/go/coverage.vim
+218 −97 autoload/go/debug.vim
+3 −3 autoload/go/debug_test.vim
+7 −12 autoload/go/fillstruct_test.vim
+2 −1 autoload/go/job_test.vim
+145 −99 autoload/go/lint_test.vim
+154 −15 autoload/go/lsp.vim
+46 −45 autoload/go/lsp/message.vim
+12 −11 autoload/go/path.vim
+5 −3 autoload/go/rename.vim
+3 −0 autoload/go/test-fixtures/lint/src/errcheck/go.mod
+3 −0 autoload/go/test-fixtures/lint/src/foo/go.mod
+3 −0 autoload/go/test-fixtures/lint/src/lint/go.mod
+3 −0 autoload/go/test-fixtures/lint/src/vet/go.mod
+3 −0 autoload/go/test-fixtures/test/src/compilerror/go.mod
+3 −0 autoload/go/test-fixtures/test/src/example/go.mod
+3 −0 autoload/go/test-fixtures/test/src/play/go.mod
+1 −1 autoload/go/test-fixtures/test/src/play/play_test.go
+3 −0 autoload/go/test-fixtures/test/src/showname/go.mod
+3 −0 autoload/go/test-fixtures/test/src/testcompilerror/go.mod
+3 −0 autoload/go/test-fixtures/test/src/timeout/go.mod
+3 −0 autoload/go/test-fixtures/test/src/veterror/go.mod
+1 −0 autoload/go/test_test.vim
+0 −2 autoload/go/tool.vim
+2 −0 autoload/go/tool_test.vim
+14 −7 autoload/go/util.vim
+47 −5 autoload/gotest.vim
+61 −43 doc/vim-go.txt
+1 −1 ftdetect/gofiletype.vim
+2 −0 ftplugin/go.vim
+5 −2 ftplugin/go/commands.vim
+1 −0 ftplugin/go/mappings.vim
+8 −1 gosnippets/UltiSnips/go.snippets
+6 −0 gosnippets/snippets/go.snip
+10 −36 plugin/go.vim
+2 −2 scripts/install-tools
+1 −1 scripts/lint
+2 −2 scripts/run-vim
+2 −2 scripts/test
+3 −3 syntax/go.vim
+17 −1 syntax/gomod.vim
+1 −3 syntax/gotexttmpl.vim
2 changes: 1 addition & 1 deletion vim/bundle/vim-gtfo
2 changes: 1 addition & 1 deletion vim/bundle/vim-instant-markdown
2 changes: 1 addition & 1 deletion vim/bundle/vim-lastplace
Submodule vim-lastplace updated from 48ba34 to 8f6c44
2 changes: 1 addition & 1 deletion vim/bundle/vim-startify
2 changes: 1 addition & 1 deletion vim/bundle/vim-tmux-navigator
Submodule vim-tmux-navigator updated 1 files
+1 −2 README.md
2 changes: 1 addition & 1 deletion vim/bundle/vim-vinegar
Submodule vim-vinegar updated 3 files
+2 −2 README.markdown
+1 −1 doc/vinegar.txt
+13 −2 plugin/vinegar.vim
2 changes: 1 addition & 1 deletion vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ let g:go_def_mapping_enabled = 1
let g:go_code_completion_enabled = 1

let g:go_metalinter_command = "golangci-lint run --allow-parallel-runners --tests --build-tags NO_CUDA "
let g:go_metalinter_autosave = 1
let g:go_metalinter_autosave = 0
let g:go_jump_to_error = 0

" go-def settings
Expand Down
2 changes: 1 addition & 1 deletion zsh-completions
Submodule zsh-completions updated 13 files
+1 −1 src/_conan
+1 −1 src/_flutter
+2 −1 src/_gist
+124 −0 src/_lilypond
+1 −5 src/_mix
+30 −5 src/_mssh
+71 −57 src/_nano
+113 −0 src/_opustools
+1 −1 src/_pygmentize
+240 −0 src/_qmk
+407 −0 src/_rmlint
+42 −0 src/_rmlint.sh
+19 −0 zsh-completions-howto.org
3 changes: 2 additions & 1 deletion zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,9 @@ done

source $ZSH/oh-my-zsh.sh

source <(fly completion --shell zsh) || true
# source <(fly completion --shell zsh) || true
source <(kubectl completion zsh) || true
source <(eksctl completion zsh) || true

export EDITOR='vim'
# else
Expand Down

0 comments on commit 11ce6e4

Please sign in to comment.