Schneider
3 years ago
6 changed files with 205 additions and 3 deletions
-
14init.vim
-
4vim/ftplugin/javascript.vim
-
128vim/lua/octo.lua
-
26vim/lua/treesitter.textobj.lua
-
2zsh/aliases.zsh
-
34zsh/custom-agnoster.zsh-theme
@ -0,0 +1,128 @@ |
|||||
|
-- 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 |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
|
@ -0,0 +1,26 @@ |
|||||
|
require'nvim-treesitter.configs'.setup { |
||||
|
textobjects = { |
||||
|
select = { |
||||
|
enable = true, |
||||
|
|
||||
|
-- Automatically jump forward to textobj, similar to targets.vim |
||||
|
lookahead = true, |
||||
|
|
||||
|
keymaps = { |
||||
|
-- You can use the capture groups defined in textobjects.scm |
||||
|
["af"] = "@function.outer", |
||||
|
["if"] = "@function.inner", |
||||
|
["ac"] = "@class.outer", |
||||
|
["ic"] = "@class.inner", |
||||
|
|
||||
|
-- Or you can define your own textobjects like this |
||||
|
--["iF"] = { |
||||
|
--python = "(function_definition) @function", |
||||
|
--cpp = "(function_definition) @function", |
||||
|
--c = "(function_definition) @function", |
||||
|
--java = "(method_declaration) @function", |
||||
|
--}, |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue