summaryrefslogtreecommitdiff
path: root/.config/nvim/vim-script
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
commit0111b31cb0008f4fcc55ddc373e63f124652b156 (patch)
tree075490fb19c4838fc58129da9f902a3370f6029e /.config/nvim/vim-script
parent6fcc69113bd7cc7295ef9dc068da80d043cbb8bb (diff)
Updated config based on Chris LunarVim release
Diffstat (limited to '.config/nvim/vim-script')
-rw-r--r--.config/nvim/vim-script/functions.vim36
1 files changed, 0 insertions, 36 deletions
diff --git a/.config/nvim/vim-script/functions.vim b/.config/nvim/vim-script/functions.vim
deleted file mode 100644
index d5f14f6..0000000
--- a/.config/nvim/vim-script/functions.vim
+++ /dev/null
@@ -1,36 +0,0 @@
-command! LspCodeAction lua require '_utils'.code_action()
-command! LspDeclaration lua require '_utils'.declaration()
-command! LspDefinition lua require '_utils'.definition()
-command! LspDocumentSymbol lua require '_utils'.document_symbol()
-command! LspFormatting lua require '_utils'.formatting()
-command! LspFormattingSync lua require '_utils'.formatting_sync()
-command! LspHover lua require '_utils'.hover()
-command! LspImplementation lua require '_utils'.implementation()
-command! LspRangeCodeAction lua require '_utils'.range_code_action()
-command! LspRangeFormatting lua require '_utils'.range_formatting()
-command! LspReferences lua require '_utils'.references()
-command! LspRename lua require '_utils'.rename()
-command! LspTypeDefinition lua require '_utils'.type_definition()
-command! LspWorkspaceSymbol lua require '_utils'.workspace_symbol()
-command! LspGotoNext lua require '_utils'.goto_next()
-command! LspGotoPrev lua require '_utils'.goto_prev()
-command! LspShowLineDianostics lua require '_utils'.show_line_diagnostics()
-command! NextHunk lua require '_utils'.next_hunk()
-command! PrevHunk lua require '_utils'.prev_hunk()
-command! StageHunk lua require '_utils'.stage_hunk()
-command! UndoStageHunk lua require '_utils'.undo_stage_hunk()
-command! ResetHunk lua require '_utils'.reset_hunk()
-command! ResetBuffer lua require '_utils'.reset_buffer()
-command! PreviewHunk lua require '_utils'.preview_hunk()
-command! BlameLine lua require '_utils'.blame_line()
-command! W noa w
-
-" Debugging
-command! DebugToggleBreakpoint lua require'dap'.toggle_breakpoint()
-command! DebugStart lua require'dap'.continue()
-command! DebugContinue lua require'dap'.continue()
-command! DebugStepOver lua require'dap'.step_over()
-command! DebugStepOut lua require'dap'.step_out()
-command! DebugStepInto lua require'dap'.step_into()
-command! DebugToggleRepl lua require'dap'.repl.toggle()
-command! DebugGetSession lua require'dap'.session()