5 Commits

Author SHA1 Message Date
Marcel Schneider 56d7091963
update 1 week ago
Marcel Schneider 87efd166c4
Fix direction of windows switched 1 year ago
Marcel Schneider 4c8482e76b
add aliases 2 years ago
Marcel Schneider 3edd79f922
Fix octo.nvim config 2 years ago
Marcel Schneider 9232734594
Update color settings 2 years ago
  1. 8
      awesome/rc.lua
  2. 144
      init.vim
  3. 16
      tmux/playerctl.sh
  4. 38
      tmux/theme.sh
  5. 5
      tmux/tmux.conf.symlink
  6. 17
      tmux/ytm-desktop.sh
  7. 13
      vim/ftplugin/javascript.vim
  8. 2
      vim/ftplugin/sql.vim
  9. 12
      vim/lua/neogenconfig.lua
  10. 128
      vim/lua/octo.lua
  11. 147
      vim/lua/octoconfig.lua
  12. 4
      zsh/aliases.zsh
  13. 22
      zsh/custom.zsh

8
awesome/rc.lua

@ -284,13 +284,13 @@ globalkeys = gears.table.join(
{description = "show main menu", group = "awesome"}),
-- Layout manipulation
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end,
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( -1) end,
{description = "swap with next client by index", group = "client"}),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end,
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( 1) end,
{description = "swap with previous client by index", group = "client"}),
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end,
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative(-1) end,
{description = "focus the next screen", group = "screen"}),
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end,
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative( 1) end,
{description = "focus the previous screen", group = "screen"}),
awful.key({ modkey, }, "u", awful.client.urgent.jumpto,
{description = "jump to urgent client", group = "client"}),

144
init.vim

@ -22,21 +22,22 @@ Plug 'easymotion/vim-easymotion' " better motion with leader
Plug 'bling/vim-airline' " statusline
Plug 'w0rp/ale' " asynchronous linting engine
Plug 'godlygeek/tabular' " Align text on symbols
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " fuzzy file finder
Plug 'junegunn/fzf.vim' " vim integration for fzf
"Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " fuzzy file finder
"Plug 'junegunn/fzf.vim' " vim integration for fzf
Plug 'airblade/vim-gitgutter' " git status in gutter column
Plug 'lambdalisue/suda.vim' " As w!! did not work anymore in nvim
Plug 'https://github.com/alok/notational-fzf-vim' " note taking
Plug 'prettier/vim-prettier', { 'do': 'npm install' } " prettier integration
"Plug 'https://github.com/alok/notational-fzf-vim' " note taking
"Plug 'prettier/vim-prettier', { 'do': 'npm install' } " prettier integration
Plug 'honza/vim-snippets' " Collection of Snippets, used by coc-snippet
"Plug 'ludovicchabant/vim-gutentags', { 'for': ['js', 'vue', 'php', 'python'] } " Keep tags in sync
Plug 'dpelle/vim-LanguageTool', { 'for': ['markdown', 'tex', 'plaintext', 'mail']} " LanguageTool bindings
"Plug 'dpelle/vim-LanguageTool', { 'for': ['markdown', 'tex', 'plaintext', 'mail']} " LanguageTool bindings
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
Plug 'kyazdani42/nvim-web-devicons' " Icons...
Plug 'mfussenegger/nvim-dap', { 'for': ['typescript', 'javascript', 'python', 'rust'] }
Plug 'lbrayner/vim-rzip' " recursive zip support, needed for yarn pnp
Plug 'kkoomen/vim-doge', { 'do': { -> doge#install() } }
"Plug 'kkoomen/vim-doge', { 'do': { -> doge#install() } }
Plug 'danymat/neogen'
Plug 'taybart/b64.nvim' " en/decode base64 strings
" telescope. Needed for octo.nvim, might replace fzf
@ -44,45 +45,49 @@ Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-fzf-native.nvim', { 'do': 'make' } " improve sort performance
Plug 'nvim-telescope/telescope-live-grep-args.nvim'
Plug 'pwntester/octo.nvim'
"Plug 'github/copilot.vim'
Plug 'github/copilot.vim'
Plug 'f-person/git-blame.nvim'
" {{{ CocPlugins
Plug 'neoclide/coc-json', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-snippets', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-tsserver', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-eslint', { 'do': 'yarn install --frozen-lockfile' }
Plug 'fannheyward/coc-rust-analyzer', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-css', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-vimtex', { 'do': 'yarn install --frozen-lockfile' }
Plug 'fannheyward/coc-texlab', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-html', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-yaml', { 'do': 'yarn install --frozen-lockfile' }
"Plug 'neoclide/coc-python', { 'do': 'yarn install --frozen-lockfile' }
Plug 'fannheyward/coc-sql', { 'do': 'yarn install --frozen-lockfile' }
Plug 'fannheyward/coc-markdownlint', { 'do': 'yarn install --frozen-lockfile' }
Plug 'fannheyward/coc-pyright', { 'for': 'python', 'do': 'yarn install --frozen-lockfile' }
Plug 'josa42/coc-sh', { 'do': 'yarn install --frozen-lockfile' }
Plug 'neoclide/coc-json', { 'do': 'yarn install' }
Plug 'neoclide/coc-snippets', { 'do': 'yarn install' }
Plug 'neoclide/coc-tsserver', { 'do': 'yarn install' }
Plug 'neoclide/coc-eslint', { 'do': 'yarn install' }
Plug 'fannheyward/coc-rust-analyzer', { 'do': 'yarn install' }
Plug 'neoclide/coc-css', { 'do': 'yarn install' }
"Plug 'neoclide/coc-vimtex', { 'do': 'yarn install' }
"Plug 'fannheyward/coc-texlab', { 'do': 'yarn install' }
Plug 'neoclide/coc-html', { 'do': 'yarn install' }
Plug 'neoclide/coc-yaml', { 'do': 'yarn install' }
"Plug 'neoclide/coc-python', { 'do': 'yarn install' }
Plug 'fannheyward/coc-sql', { 'do': 'yarn install' }
Plug 'fannheyward/coc-markdownlint', { 'do': 'yarn install' }
Plug 'fannheyward/coc-pyright', { 'for': 'python', 'do': 'yarn install' }
Plug 'josa42/coc-sh', { 'do': 'yarn install' }
"Plug 'prisma/vim-prisma'
" }}}
" html / templates{{{
Plug 'mattn/emmet-vim', { 'for': ['jinja.html', 'html', 'php', 'gohtmltmpl', 'vue', 'markdown'] } " emmet support for vim - easily create markdup wth CSS-like syntax
Plug 'gregsexton/MatchTag', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " match tags in html, similar to paren support
Plug 'othree/html5.vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " html5 support
Plug 'lumiliet/vim-twig', { 'for': ['html'] } " twig syntax support
Plug 'Glench/Vim-Jinja2-Syntax', { 'for': ['html'] }
Plug 'jvanja/vim-bootstrap4-snippets', { 'for': ['html', 'blade'] }
Plug 'mattn/emmet-vim', { 'for': ['jinja.html', 'html', 'php', 'gohtmltmpl', 'vue', 'markdown', 'typescriptreact'] } " emmet support for vim - easily create markdup wth CSS-like syntax
Plug 'gregsexton/MatchTag', { 'for': ['html', 'php', 'gohtmltmpl', 'vue', 'typescriptreact'] } " match tags in html, similar to paren support
Plug 'othree/html5.vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue', 'typescriptreact'] } " html5 support
"Plug 'lumiliet/vim-twig', { 'for': ['html'] } " twig syntax support
"Plug 'Glench/Vim-Jinja2-Syntax', { 'for': ['html'] }
"Plug 'jvanja/vim-bootstrap4-snippets', { 'for': ['html', 'blade'] }
"}}}
" JavaScript{{{
Plug 'gavocanov/vim-js-indent', { 'for': [ 'javascript' ]} " JavaScript indent support
Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html', 'vue' ] } " vue.js integration
"Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html', 'vue' ] } " vue.js integration
Plug 'kevinoid/vim-jsonc'
"}}}
" LaTeX{{{
Plug 'lervag/vimtex', { 'for': 'tex' }
"Plug 'lervag/vimtex', { 'for': 'tex' }
"}}}
" Markdown{{{
@ -100,17 +105,17 @@ Plug 'cespare/vim-toml', { 'for': 'toml' }
"}}}
" C/C++{{{
Plug 'Rip-Rip/clang_complete', { 'for': ['c', 'cpp'], 'do': 'make install' }
let g:clang_library_path='/usr/lib/llvm-6.0/lib/libclang-6.0.so.1'
Plug 'rhysd/vim-clang-format', { 'for' : ['c', 'cpp', 'java'] }
Plug 'vim-scripts/DoxygenToolkit.vim', { 'for' : ['c', 'cpp'] }
"Plug 'Rip-Rip/clang_complete', { 'for': ['c', 'cpp'], 'do': 'make install' }
"let g:clang_library_path='/usr/lib/llvm-6.0/lib/libclang-6.0.so.1'
"Plug 'rhysd/vim-clang-format', { 'for' : ['c', 'cpp', 'java'] }
"Plug 'vim-scripts/DoxygenToolkit.vim', { 'for' : ['c', 'cpp'] }
"}}}
" PHP{{{
Plug 'captbaritone/better-indent-support-for-php-with-html', { 'for': 'php' }
Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates
Plug 'Rican7/php-doc-modded', { 'for': 'php' } " Automatic phpdoc comments
Plug 'jwalton512/vim-blade', { 'for': 'php' }
"Plug 'captbaritone/better-indent-support-for-php-with-html', { 'for': 'php' }
"Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates
"Plug 'Rican7/php-doc-modded', { 'for': 'php' } " Automatic phpdoc comments
"Plug 'jwalton512/vim-blade', { 'for': 'php' }
"}}}
" {{{ Python
@ -131,13 +136,18 @@ filetype plugin indent on " required
" THEME{{{
colorscheme solarized
set background=dark
"set background=dark
" Use light theme if whole shell is in light mode
let themeenv=$THEME_SWITCHER
if themeenv=='light'
set background=light
endif
hi CocFloating ctermbg=248 ctermfg=238 guibg=#b3b3b3
hi CocMenuSel ctermbg=250 ctermfg=239 guibg=#c9c9c9
" }}}
" SETTINGS{{{
@ -281,7 +291,27 @@ require'nvim-treesitter.configs'.setup {
-- },
},
},
},
move = {
enable = true,
set_jumps = true, -- whether to set jumps in the jumplist
goto_next_start = {
["]m"] = "@function.outer",
["]]"] = { query = "@class.outer", desc = "Next class start" },
},
goto_next_end = {
["]M"] = "@function.outer",
["]["] = "@class.outer",
},
goto_previous_start = {
["[m"] = "@function.outer",
["[["] = "@class.outer",
},
goto_previous_end = {
["[M"] = "@function.outer",
["[]"] = "@class.outer",
},
},
},
}
EOF
" }}}
@ -297,6 +327,8 @@ if exists('g:started_by_firenvim')
else
let g:airline_powerline_fonts = 1
end
let g:airline#extensions#tabline#formatter = 'unique_tail_improved'
let g:airline#extensions#branch#displayed_head_limit = 10
" notational notes
let g:nv_search_paths = ['~/notes']
@ -304,10 +336,11 @@ let g:nv_default_extension = '.md'
let g:nv_main_directory = '~/notes'
" Octo.nvim
"lua require('octo')
lua require('octoconfig')
" ALE {{{
let g:airline#extensions#ale#enabled = 1
let g:ale_writegood_options = '--no-eprime'
"}}}
let vim_tags_ctags_binary='~/bin/phpctags'"
@ -334,8 +367,10 @@ autocmd FileType c,cpp,objc vnoremap <buffer><Leader>f :ClangFormat<CR>
"}}}
" Prettier
let g:prettier#config#tab_width = 4
let g:prettier#exec_cmd_async = 1
"let g:prettier#config#tab_width = 4
"let g:prettier#exec_cmd_async = 1
"let g:prettier#autoformat = 1
"let g:prettier#autoformat_require_pragma = 0
" Completion {{{
@ -473,6 +508,14 @@ imap <C-k> <Plug>(coc-snippets-expand-jump)
let g:neosnippet#snippets_directory = '~/.dotfiles/vim/neosnippets'
"}}}
lua <<EOF
require('gitblame').setup {
enabled = false,
delay = 0,
schedule_event = 'CursorHold',
}
EOF
" Treesitter {{{
lua <<EOF
require'nvim-treesitter.configs'.setup {
@ -481,6 +524,7 @@ require'nvim-treesitter.configs'.setup {
enable = true, -- false will disable the whole extension
disable = {}, -- list of language that will be disabled
},
tree_docs = { enable = true },
}
EOF
" }}}
@ -489,7 +533,8 @@ EOF
lua <<EOF
-- You dont need to set any of these options. These are the default ones. Only
-- the loading is important
require('telescope').setup {
local telescope = require("telescope")
telescope.setup {
extensions = {
fzf = {
fuzzy = true, -- false will only do exact matching
@ -503,6 +548,8 @@ require('telescope').setup {
-- To get fzf loaded and working with telescope, you need to call
-- load_extension, somewhere after setup function:
require('telescope').load_extension('fzf')
telescope.load_extension("live_grep_args")
vim.keymap.set("n", "<leader>fg", ":lua require('telescope').extensions.live_grep_args.live_grep_args()<CR>")
EOF
"}}}
@ -513,4 +560,13 @@ let g:doge_javascript_settings = {
let g:doge_doc_standard_python = 'google'
let g:doge_mapping_comment_jump_forward = '<c-k>'
" neogen settings
lua require('neogenconfig')
" Copilot settings
" accept on enter, if no suggestion is selected fallback to default
imap <silent><script><expr> <C-J> copilot#Accept("<CR>")
let g:copilot_no_tab_map = v:true
"}}}

16
tmux/playerctl.sh

@ -0,0 +1,16 @@
#!/bin/bash
set -eu
artist=$(playerctl metadata artist)
title=$(playerctl metadata title)
if [ -z "$artist" ] && [ -z "$title" ]; then
exit 0
else
# trim and ellipsize if longer than 30 characters
text="$artist - $title"
if [ ${#text} -gt 30 ]; then
text="${text:0:29}"
fi
echo "$text"
fi

38
tmux/theme.sh

@ -1,3 +1,35 @@
#### COLOUR (Solarized 256)
# default statusbar colors
#set-option -g status-style fg=colour136,bg=colour235 #yellow and base02
## default window title colors
#set-window-option -g window-status-style fg=colour244,bg=default #base0 and default
#set-window-option -g window-status-style dim
## active window title colors
#set-window-option -g window-status-current-style fg=colour166,bg=default #orange and default
##set-window-option -g window-status-current-style bright
## pane border
#set-option -g pane-border-style fg=colour235 #base02
#set-option -g pane-active-border-style fg=colour240 #base01
## message text
#set-option -g message-style fg=colour166,bg=colour235 #orange and base02
## pane number display
#set-option -g display-panes-active-colour colour33 #blue
#set-option -g display-panes-colour colour166 #orange
## clock
#set-window-option -g clock-mode-colour colour64 #green
## bell
#set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red
#-------------------
#### COLOUR
tm_icon="♟"
@ -21,7 +53,7 @@ set -g status-interval 5
# default statusbar colors
# set-option -g status-bg colour0
set-option -g status-fg $tm_color_active
set-option -g status-bg default
set-option -g status-bg "#002b36" #default
# default window title colors
set -g window-status-style fg=$tm_color_inactive,bg=default
@ -49,6 +81,8 @@ set-window-option -g clock-mode-colour $tm_color_active
#tm_battery="#(~/.dotfiles/bin/battery_indicator.sh)"
#tm_banshee="#[fg=$tm_color_music]#($HOME/.dotfiles/tmux/banshee.sh)"
tm_clementine="#[fg=$tm_color_music]#($HOME/.dotfiles/tmux/strawberry.sh)"
tm_playerctl="#[fg=$tm_color_music]#($HOME/.dotfiles/tmux/playerctl.sh)"
#tm_ytmdesktop="#[fg=$tm_color_music]#($HOME/.dotfiles/tmux/ytm-desktop.sh)"
tm_battery="#[fg=$tm_color_inactive]#(upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep percentage | awk '{print $2}')"
tm_date="#[fg=$tm_color_inactive] %R %d %b"
@ -56,4 +90,4 @@ tm_host="#[fg=$tm_color_feature,bold]#h"
tm_session_name="#[fg=$tm_color_feature,bold]$tm_icon #S"
set -g status-left $tm_session_name' '
set -g status-right $tm_clementine' '$tm_battery' '$tm_date' '$tm_host
set -g status-right $tm_playerctl' '$tm_clementine' '$tm_battery' '$tm_date' '$tm_host

5
tmux/tmux.conf.symlink

@ -1,8 +1,9 @@
set -g default-command "zsh"
set -g default-terminal "tmux-256color"
set-option -sa terminal-features ',tmux-256color:Tc'
set -g history-limit 20000
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm'
set-option -sa terminal-features ',xterm-kitty:RGB'
# automatically renumber tmux windows
set -g renumber-windows on
@ -51,6 +52,8 @@ bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
# quickly open a new window
bind N new-window -c "#{pane_current_path}"
# quickly open a new screen
bind S new-session
# split window and fix path for tmux 1.9
bind | split-window -h -c "#{pane_current_path}"

17
tmux/ytm-desktop.sh

@ -0,0 +1,17 @@
#!/usr/bin/env zsh
response=$(curl http://localhost:9863/api/v1/state --header 'Authorization:5c5b96bc669394aa187850daa3da53dd70928b2226f6e10ba4b4acc27f3743d48ccfb1389fa3e066263a6600ae88855c4b40cf7072770f06ab7efb852f9f65cf65892cdc933627099c84fefb5802999c31e8e3f240048fb5e39501e7e49cffa5beb3a58f8f6e89bf70a999adb280c5f011042ff2d9aee92315bbbabe68b996f5f5440ebf6762aa2ed4b7ae607a27e9d96d11f60f452091cc9f17e2ee47dd585ad5624aa43a06536c203cae71922dae615792c05ecc01d98110f30c2efa7efbda0263ecb21e418bf3b03f7a707d193b8273b7499a0a18042cfe1315d7a11acb985f0927f87cb7dcda54fb9dc09c56c989e1ec760739d89609ad1fbbe36a8f8642' --fail-with-body)
responseExitCode=$?
if [ $responseExitCode -ne 0 ]; then
cat /tmp/ytm-title
exit 0
fi
title=$(echo "$response" | jq -r '.video.author+ " - " + .video.title')
# if zero exit code the request worked and we save the title
if [ $responseExitCode -eq 0 ]; then
echo $title > /tmp/ytm-title
fi
cat /tmp/ytm-title

13
vim/ftplugin/javascript.vim

@ -2,9 +2,10 @@ let b:ale_fixers = {}
let b:ale_fixers['javascript'] = ['prettier']
let b:ale_fixers['typescript'] = ['prettier']
let b:ale_fixers['json'] = ['eslint']
let b:ale_javascript_prettier_options = '--tab-width 4'
let b:ale_typescript_prettier_options = '--tab-width 4'
"let b:ale_javascript_prettier_options = '--tab-width 4'
"let b:ale_typescript_prettier_options = '--tab-width 4'
let b:ale_fixers['vue'] = ['prettier']
let b:ale_fixers['typescriptreact'] = ['prettier']
let b:ale_vue_prettier_options = '--no-semi --single-quote'
let b:ale_fix_on_save = 1
let b:ale_javascript_prettier_use_local_config = 1
@ -12,13 +13,13 @@ let b:ale_typescript_prettier_use_local_config = 1
" config for local eslint
let g:ale_javascript_eslint_use_global = 1
let g:ale_javascript_eslint_executable = 'yarn'
let g:ale_javascript_eslint_options = 'run eslint'
let g:ale_typescript_eslint_use_global = 1
let g:ale_javascript_eslint_options = 'run eslint .'
let g:ale_typescript_eslint_use_global = 0
let g:ale_typescript_eslint_executable = 'yarn'
let g:ale_typescript_eslint_options = 'run eslint'
let g:ale_typescript_eslint_options = 'run eslint .'
let g:ale_json_eslint_use_global = 1
let g:ale_json_eslint_executable = 'yarn'
let g:ale_json_eslint_options = 'run eslint'
let g:ale_json_eslint_options = 'run eslint .'
let g:jsdoc_formatter = 'tsdoc'
let g:jsdoc_lehre_path = '/home/schneider/.yarn/bin/lehre'

2
vim/ftplugin/sql.vim

@ -0,0 +1,2 @@
let g:ale_fixers['sql'] = ['pgformatter']
let g:ale_fix_on_save=1

12
vim/lua/neogenconfig.lua

@ -0,0 +1,12 @@
require('neogen').setup {
enabled = true,
languages = {
typescript = {
template = {
annotation_convention = "tsdoc" -- for a full list of annotation_conventions, see supported-languages below,
}
},
}
}
vim.keymap.set("n", "<Leader>d", ":lua require('neogen').generate()<CR>", opts)

128
vim/lua/octo.lua

@ -1,128 +0,0 @@
-- Config file for octo.nvim
require"octo".setup({
default_remote = {"upstream", "origin"}; -- order to try remotes
reaction_viewer_hint_icon = ""; -- marker for user reactions
user_icon = ""; -- user icon
timeline_marker = ""; -- timeline marker
timeline_indent = "2"; -- timeline indentation
right_bubble_delimiter = ""; -- Bubble delimiter
left_bubble_delimiter = ""; -- Bubble delimiter
github_hostname = ""; -- GitHub Enterprise host
snippet_context_lines = 4; -- number or lines around commented lines
file_panel = {
size = 10, -- changed files panel rows
use_icons = true -- use web-devicons in file panel
},
mappings = {
issue = {
close_issue = "<space>ic", -- close issue
reopen_issue = "<space>io", -- reopen issue
list_issues = "<space>il", -- list open issues on same repo
reload = "<C-r>", -- reload issue
open_in_browser = "<C-b>", -- open issue in browser
copy_url = "<C-y>", -- copy url to system clipboard
add_assignee = "<space>aa", -- add assignee
remove_assignee = "<space>ad", -- remove assignee
create_label = "<space>lc", -- create label
add_label = "<space>la", -- add label
remove_label = "<space>ld", -- remove label
goto_issue = "<space>gi", -- navigate to a local repo issue
add_comment = "<space>ca", -- add comment
delete_comment = "<space>cd", -- delete comment
next_comment = "]c", -- go to next comment
prev_comment = "[c", -- go to previous comment
react_hooray = "<space>rp", -- add/remove 🎉 reaction
react_heart = "<space>rh", -- add/remove ❤️ reaction
react_eyes = "<space>re", -- add/remove 👀 reaction
react_thumbs_up = "<space>r+", -- add/remove 👍 reaction
react_thumbs_down = "<space>r-", -- add/remove 👎 reaction
react_rocket = "<space>rr", -- add/remove 🚀 reaction
react_laugh = "<space>rl", -- add/remove 😄 reaction
react_confused = "<space>rc", -- add/remove 😕 reaction
},
pull_request = {
checkout_pr = "<space>po", -- checkout PR
merge_pr = "<space>pm", -- merge PR
list_commits = "<space>pc", -- list PR commits
list_changed_files = "<space>pf", -- list PR changed files
show_pr_diff = "<space>pd", -- show PR diff
add_reviewer = "<space>va", -- add reviewer
remove_reviewer = "<space>vd", -- remove reviewer request
close_issue = "<space>ic", -- close PR
reopen_issue = "<space>io", -- reopen PR
list_issues = "<space>il", -- list open issues on same repo
reload = "<C-r>", -- reload PR
open_in_browser = "<C-b>", -- open PR in browser
copy_url = "<C-y>", -- copy url to system clipboard
add_assignee = "<space>aa", -- add assignee
remove_assignee = "<space>ad", -- remove assignee
create_label = "<space>lc", -- create label
add_label = "<space>la", -- add label
remove_label = "<space>ld", -- remove label
goto_issue = "<space>gi", -- navigate to a local repo issue
add_comment = "<space>ca", -- add comment
delete_comment = "<space>cd", -- delete comment
next_comment = "]c", -- go to next comment
prev_comment = "[c", -- go to previous comment
react_hooray = "<space>rp", -- add/remove 🎉 reaction
react_heart = "<space>rh", -- add/remove ❤️ reaction
react_eyes = "<space>re", -- add/remove 👀 reaction
react_thumbs_up = "<space>r+", -- add/remove 👍 reaction
react_thumbs_down = "<space>r-", -- add/remove 👎 reaction
react_rocket = "<space>rr", -- add/remove 🚀 reaction
react_laugh = "<space>rl", -- add/remove 😄 reaction
react_confused = "<space>rc", -- add/remove 😕 reaction
},
review_thread = {
goto_issue = "<space>gi", -- navigate to a local repo issue
add_comment = "<space>ca", -- add comment
add_suggestion = "<space>sa", -- add suggestion
delete_comment = "<space>cd", -- delete comment
next_comment = "]c", -- go to next comment
prev_comment = "[c", -- go to previous comment
select_next_entry = "]q", -- move to previous changed file
select_prev_entry = "[q", -- move to next changed file
close_review_tab = "<C-c>", -- close review tab
react_hooray = "<space>rp", -- add/remove 🎉 reaction
react_heart = "<space>rh", -- add/remove ❤️ reaction
react_eyes = "<space>re", -- add/remove 👀 reaction
react_thumbs_up = "<space>r+", -- add/remove 👍 reaction
react_thumbs_down = "<space>r-", -- add/remove 👎 reaction
react_rocket = "<space>rr", -- add/remove 🚀 reaction
react_laugh = "<space>rl", -- add/remove 😄 reaction
react_confused = "<space>rc", -- add/remove 😕 reaction
},
submit_win = {
approve_review = "<C-a>", -- approve review
comment_review = "<C-m>", -- comment review
request_changes = "<C-r>", -- request changes review
close_review_tab = "<C-c>", -- close review tab
},
review_diff = {
add_review_comment = "<space>ca", -- add a new review comment
add_review_suggestion = "<space>sa", -- add a new review suggestion
focus_files = "<leader>e", -- move focus to changed file panel
toggle_files = "<leader>b", -- hide/show changed files panel
next_thread = "]t", -- move to next thread
prev_thread = "[t", -- move to previous thread
select_next_entry = "]q", -- move to previous changed file
select_prev_entry = "[q", -- move to next changed file
close_review_tab = "<C-c>", -- close review tab
toggle_viewed = "<leader><space>", -- toggle viewer viewed state
},
file_panel = {
next_entry = "j", -- move to next changed file
prev_entry = "k", -- move to previous changed file
select_entry = "<cr>", -- show selected changed file diffs
refresh_files = "R", -- refresh changed files panel
focus_files = "<leader>e", -- move focus to changed file panel
toggle_files = "<leader>b", -- hide/show changed files panel
select_next_entry = "]q", -- move to previous changed file
select_prev_entry = "[q", -- move to next changed file
close_review_tab = "<C-c>", -- close review tab
toggle_viewed = "<leader><space>", -- toggle viewer viewed state
}
}
})

147
vim/lua/octoconfig.lua

@ -0,0 +1,147 @@
-- Config file for octo.nvim
require"octo".setup({
default_remote = {"upstream", "origin"}; -- order to try remotes
ssh_aliases = {}, -- SSH aliases. e.g. `ssh_aliases = {["github.com-work"] = "github.com"}`
reaction_viewer_hint_icon = ""; -- marker for user reactions
user_icon = ""; -- user icon
timeline_marker = ""; -- timeline marker
timeline_indent = "2"; -- timeline indentation
right_bubble_delimiter = ""; -- bubble delimiter
left_bubble_delimiter = ""; -- bubble delimiter
github_hostname = ""; -- GitHub Enterprise host
snippet_context_lines = 4; -- number or lines around commented lines
gh_env = {}, -- extra environment variables to pass on to GitHub CLI, can be a table or function returning a table
timeout = 5000, -- timeout for requests between the remote server
ui = {
use_signcolumn = true, -- show "modified" marks on the sign column
},
issues = {
order_by = { -- criteria to sort results of `Octo issue list`
field = "CREATED_AT", -- either COMMENTS, CREATED_AT or UPDATED_AT (https://docs.github.com/en/graphql/reference/enums#issueorderfield)
direction = "DESC" -- either DESC or ASC (https://docs.github.com/en/graphql/reference/enums#orderdirection)
}
},
pull_requests = {
order_by = { -- criteria to sort the results of `Octo pr list`
field = "CREATED_AT", -- either COMMENTS, CREATED_AT or UPDATED_AT (https://docs.github.com/en/graphql/reference/enums#issueorderfield)
direction = "DESC" -- either DESC or ASC (https://docs.github.com/en/graphql/reference/enums#orderdirection)
},
always_select_remote_on_create = false -- always give prompt to select base remote repo when creating PRs
},
file_panel = {
size = 10, -- changed files panel rows
use_icons = true -- use web-devicons in file panel (if false, nvim-web-devicons does not need to be installed)
},
mappings = {
issue = {
close_issue = { lhs = "<space>ic", desc = "close issue" },
reopen_issue = { lhs = "<space>io", desc = "reopen issue" },
list_issues = { lhs = "<space>il", desc = "list open issues on same repo" },
reload = { lhs = "<C-r>", desc = "reload issue" },
open_in_browser = { lhs = "<C-b>", desc = "open issue in browser" },
copy_url = { lhs = "<C-y>", desc = "copy url to system clipboard" },
add_assignee = { lhs = "<space>aa", desc = "add assignee" },
remove_assignee = { lhs = "<space>ad", desc = "remove assignee" },
create_label = { lhs = "<space>lc", desc = "create label" },
add_label = { lhs = "<space>la", desc = "add label" },
remove_label = { lhs = "<space>ld", desc = "remove label" },
goto_issue = { lhs = "<space>gi", desc = "navigate to a local repo issue" },
add_comment = { lhs = "<space>ca", desc = "add comment" },
delete_comment = { lhs = "<space>cd", desc = "delete comment" },
next_comment = { lhs = "]c", desc = "go to next comment" },
prev_comment = { lhs = "[c", desc = "go to previous comment" },
react_hooray = { lhs = "<space>rp", desc = "add/remove 🎉 reaction" },
react_heart = { lhs = "<space>rh", desc = "add/remove ❤️ reaction" },
react_eyes = { lhs = "<space>re", desc = "add/remove 👀 reaction" },
react_thumbs_up = { lhs = "<space>r+", desc = "add/remove 👍 reaction" },
react_thumbs_down = { lhs = "<space>r-", desc = "add/remove 👎 reaction" },
react_rocket = { lhs = "<space>rr", desc = "add/remove 🚀 reaction" },
react_laugh = { lhs = "<space>rl", desc = "add/remove 😄 reaction" },
react_confused = { lhs = "<space>rc", desc = "add/remove 😕 reaction" },
},
pull_request = {
checkout_pr = { lhs = "<space>po", desc = "checkout PR" },
merge_pr = { lhs = "<space>pm", desc = "merge commit PR" },
squash_and_merge_pr = { lhs = "<space>psm", desc = "squash and merge PR" },
list_commits = { lhs = "<space>pc", desc = "list PR commits" },
list_changed_files = { lhs = "<space>pf", desc = "list PR changed files" },
show_pr_diff = { lhs = "<space>pd", desc = "show PR diff" },
add_reviewer = { lhs = "<space>va", desc = "add reviewer" },
remove_reviewer = { lhs = "<space>vd", desc = "remove reviewer request" },
close_issue = { lhs = "<space>ic", desc = "close PR" },
reopen_issue = { lhs = "<space>io", desc = "reopen PR" },
list_issues = { lhs = "<space>il", desc = "list open issues on same repo" },
reload = { lhs = "<C-r>", desc = "reload PR" },
open_in_browser = { lhs = "<C-b>", desc = "open PR in browser" },
copy_url = { lhs = "<C-y>", desc = "copy url to system clipboard" },
goto_file = { lhs = "gf", desc = "go to file" },
add_assignee = { lhs = "<space>aa", desc = "add assignee" },
remove_assignee = { lhs = "<space>ad", desc = "remove assignee" },
create_label = { lhs = "<space>lc", desc = "create label" },
add_label = { lhs = "<space>la", desc = "add label" },
remove_label = { lhs = "<space>ld", desc = "remove label" },
goto_issue = { lhs = "<space>gi", desc = "navigate to a local repo issue" },
add_comment = { lhs = "<space>ca", desc = "add comment" },
delete_comment = { lhs = "<space>cd", desc = "delete comment" },
next_comment = { lhs = "]c", desc = "go to next comment" },
prev_comment = { lhs = "[c", desc = "go to previous comment" },
react_hooray = { lhs = "<space>rp", desc = "add/remove 🎉 reaction" },
react_heart = { lhs = "<space>rh", desc = "add/remove ❤️ reaction" },
react_eyes = { lhs = "<space>re", desc = "add/remove 👀 reaction" },
react_thumbs_up = { lhs = "<space>r+", desc = "add/remove 👍 reaction" },
react_thumbs_down = { lhs = "<space>r-", desc = "add/remove 👎 reaction" },
react_rocket = { lhs = "<space>rr", desc = "add/remove 🚀 reaction" },
react_laugh = { lhs = "<space>rl", desc = "add/remove 😄 reaction" },
react_confused = { lhs = "<space>rc", desc = "add/remove 😕 reaction" },
},
review_thread = {
goto_issue = { lhs = "<space>gi", desc = "navigate to a local repo issue" },
add_comment = { lhs = "<space>ca", desc = "add comment" },
add_suggestion = { lhs = "<space>sa", desc = "add suggestion" },
delete_comment = { lhs = "<space>cd", desc = "delete comment" },
next_comment = { lhs = "]c", desc = "go to next comment" },
prev_comment = { lhs = "[c", desc = "go to previous comment" },
select_next_entry = { lhs = "]q", desc = "move to previous changed file" },
select_prev_entry = { lhs = "[q", desc = "move to next changed file" },
close_review_tab = { lhs = "<C-c>", desc = "close review tab" },
react_hooray = { lhs = "<space>rp", desc = "add/remove 🎉 reaction" },
react_heart = { lhs = "<space>rh", desc = "add/remove ❤️ reaction" },
react_eyes = { lhs = "<space>re", desc = "add/remove 👀 reaction" },
react_thumbs_up = { lhs = "<space>r+", desc = "add/remove 👍 reaction" },
react_thumbs_down = { lhs = "<space>r-", desc = "add/remove 👎 reaction" },
react_rocket = { lhs = "<space>rr", desc = "add/remove 🚀 reaction" },
react_laugh = { lhs = "<space>rl", desc = "add/remove 😄 reaction" },
react_confused = { lhs = "<space>rc", desc = "add/remove 😕 reaction" },
},
submit_win = {
approve_review = { lhs = "<C-a>", desc = "approve review" },
comment_review = { lhs = "<C-m>", desc = "comment review" },
request_changes = { lhs = "<C-r>", desc = "request changes review" },
close_review_tab = { lhs = "<C-c>", desc = "close review tab" },
},
review_diff = {
add_review_comment = { lhs = "<space>ca", desc = "add a new review comment" },
add_review_suggestion = { lhs = "<space>sa", desc = "add a new review suggestion" },
focus_files = { lhs = "<leader>e", desc = "move focus to changed file panel" },
toggle_files = { lhs = "<leader>b", desc = "hide/show changed files panel" },
next_thread = { lhs = "]t", desc = "move to next thread" },
prev_thread = { lhs = "[t", desc = "move to previous thread" },
select_next_entry = { lhs = "]q", desc = "move to previous changed file" },
select_prev_entry = { lhs = "[q", desc = "move to next changed file" },
close_review_tab = { lhs = "<C-c>", desc = "close review tab" },
toggle_viewed = { lhs = "<leader><space>", desc = "toggle viewer viewed state" },
},
file_panel = {
next_entry = { lhs = "j", desc = "move to next changed file" },
prev_entry = { lhs = "k", desc = "move to previous changed file" },
select_entry = { lhs = "<cr>", desc = "show selected changed file diffs" },
refresh_files = { lhs = "R", desc = "refresh changed files panel" },
focus_files = { lhs = "<leader>e", desc = "move focus to changed file panel" },
toggle_files = { lhs = "<leader>b", desc = "hide/show changed files panel" },
select_next_entry = { lhs = "]q", desc = "move to previous changed file" },
select_prev_entry = { lhs = "[q", desc = "move to next changed file" },
close_review_tab = { lhs = "<C-c>", desc = "close review tab" },
toggle_viewed = { lhs = "<leader><space>", desc = "toggle viewer viewed state" },
}
}
})

4
zsh/aliases.zsh

@ -61,6 +61,7 @@ alias killbg='kill ${${(v)jobstates##*:*:}%=*}'
alias dns='dig +noall +answer any '
alias standup='cd /home/schneider/git/ && git standup -m 8 -d 7 -s'
alias yesterday='cd /home/schneider/git/ && git standup -m 12 -d 1 -s'
alias fuu='fuck'
alias jswatch='/home/schneider/.yarn/bin/watch '
@ -74,3 +75,6 @@ alias madness='docker run --rm -it -v $PWD:/docs -p 3005:3000 dannyben/madness'
# {{{ yarn
alias yrb='yarn run build'
#}}}
alias c='clipcopy'
alias gd='git difftool '

22
zsh/custom.zsh

@ -48,3 +48,25 @@ swth()
source ~/.zshrc
fi
}
awscreds() {
SSOFILE=~/.aws/sso/cache/$(\ls -t ~/.aws/sso/cache | head -n 1)
CACHEFILE=~/.aws/cli/cache/$(\ls -t ~/.aws/cli/cache | head -n 1)
export AWS_ACCESS_KEY_ID="$(jq -r '.Credentials.AccessKeyId' $CACHEFILE)" AWS_SECRET_ACCESS_KEY="$(jq -r '.Credentials.SecretAccessKey' $CACHEFILE)"
export AWS_SESSION_TOKEN="$(jq -r '.Credentials.SessionToken' $SSOFILE)"
}
s3bat() {
# create temporary folder
filename=$(basename -- "$1")
extension="${filename##*.}"
path_hash=$(echo -n "$1" | sha256sum | head -c 64)
tmpfile="/tmp/${path_hash}.${extension}"
# check if tmpfile already exists
if [[ ! -a "$tmpfile" ]]; then
aws --profile backend s3 cp --request-payer requester $1 "$tmpfile"
fi
bat "$tmpfile"
}
Loading…
Cancel
Save