mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-14 21:13:49 +00:00
145 lines
6.0 KiB
Lua
145 lines
6.0 KiB
Lua
-- [[ Basic Keymaps ]]
|
|
-- See `:help vim.keymap.set()`
|
|
|
|
-- Clear highlights on search when pressing <Esc> in normal mode
|
|
-- See `:help hlsearch`
|
|
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
|
|
|
|
-- Diagnostic keymaps
|
|
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D]iagnostic message' })
|
|
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagnostic message' })
|
|
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = 'Show diagnostic [E]rror messages' })
|
|
vim.keymap.set('n', '<leader>q', vim.diagnostic.setqflist, { desc = 'Open diagnostic [Q]uickfix list' })
|
|
|
|
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
|
|
-- NOTE: This won't work in all terminal emulators/tmux/etc. Try your own mapping
|
|
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
|
|
|
|
-- Open terminal in current window
|
|
vim.keymap.set({ 'n', 'v' }, '<leader>to', '<cmd>term<cr>', { desc = '[T]erminal [O]pen' })
|
|
|
|
-- Disable arrow keys in normal mode
|
|
vim.keymap.set({ 'n', 'v' }, '<left>', '<cmd>echo "Use h to move!!"<CR>')
|
|
vim.keymap.set({ 'n', 'v' }, '<right>', '<cmd>echo "Use l to move!!"<CR>')
|
|
vim.keymap.set({ 'n', 'v' }, '<up>', '<cmd>echo "Use k to move!!"<CR>')
|
|
vim.keymap.set({ 'n', 'v' }, '<down>', '<cmd>echo "Use j to move!!"<CR>')
|
|
|
|
-- Keybinds to make split navigation easier.
|
|
-- Use CTRL+<hjkl> to switch between windows
|
|
--
|
|
-- See `:help wincmd` for a list of all window commands
|
|
vim.keymap.set('n', '<C-h>', '<C-w><C-h>', { desc = 'Move focus to the left window' })
|
|
vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right window' })
|
|
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
|
|
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
|
|
|
|
-- Populate CMD to prepare for change directory
|
|
vim.keymap.set('n', '<leader>cd ', ':cd ', { desc = 'Prepare CMD for [C]hange [D]irectory' })
|
|
-- Navigate to 'base' directory, the initial dir that nvim was run in
|
|
vim.keymap.set('n', '<leader>cdb', '<cmd>cd ' .. vim.g.base_dir .. '<cr>', { desc = '[C]hange [D]irectory to [B]ase directory' })
|
|
-- Navigate to 'user home' directory
|
|
vim.keymap.set('n', '<leader>cdh', '<cmd>cd ' .. vim.env.HOME .. '<cr>', { desc = '[C]hange [D]irectory to [H]ome' })
|
|
-- Automatically navigate to config directory
|
|
vim.keymap.set('n', '<leader>cdn', '<cmd>cd ' .. vim.fn.stdpath 'config' .. '<cr>', { desc = '[C]hange [D]irectory to [N]eovim' })
|
|
|
|
-- Switch to between buffers
|
|
vim.keymap.set('n', '<leader>bp', '<cmd>bp<cr>', { desc = '[B]uffer [P]revious' })
|
|
vim.keymap.set('n', '<leader>bn', '<cmd>bn<cr>', { desc = '[B]uffer [N]ext' })
|
|
|
|
-- Navigate quickfix list
|
|
vim.keymap.set('n', '<leader>lo', '<cmd>copen<cr>', { desc = 'Quickfix [L]ist [O]pen' })
|
|
vim.keymap.set('n', '<C-S-j>', '<cmd>cnext<cr>')
|
|
vim.keymap.set('n', '<C-S-k>', '<cmd>cprev<cr>')
|
|
|
|
-- Resizing windows
|
|
vim.keymap.set({ 'n', 'v' }, '<M-,>', '<C-W><')
|
|
vim.keymap.set({ 'n', 'v' }, '<M-.>', '<C-W>>')
|
|
vim.keymap.set({ 'n', 'v' }, '<M-=>', '<C-W>+')
|
|
vim.keymap.set({ 'n', 'v' }, '<M-->', '<C-W>-')
|
|
|
|
local function get_visual_selection()
|
|
-- Get selection position
|
|
local s_start = vim.fn.getpos "'<"
|
|
local s_end = vim.fn.getpos "'>"
|
|
-- Get line count
|
|
local n_lines = math.abs(s_end[2] - s_start[2]) + 1
|
|
-- Read lines from buffer
|
|
local lines = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)
|
|
-- Subtract unselected sections from lines
|
|
lines[1] = string.sub(lines[1], s_start[3], -1)
|
|
if n_lines == 1 then
|
|
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3] - s_start[3] + 1)
|
|
else
|
|
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3])
|
|
end
|
|
-- Return selected
|
|
return lines
|
|
end
|
|
|
|
local function global_cmd_yank()
|
|
-- Prompt user input for expression
|
|
local inexpr = vim.fn.input 'Enter expression: '
|
|
local outsep = vim.fn.input 'Enter separator: '
|
|
|
|
-- Get the (selected) lines
|
|
local lines = nil
|
|
local mode = vim.api.nvim_get_mode()['mode']
|
|
if string.find(mode:lower(), '^v') then
|
|
lines = get_visual_selection()
|
|
else
|
|
lines = vim.api.nvim_buf_get_lines(0, 0, -1, false)
|
|
end
|
|
|
|
-- Apply expression on all lines
|
|
local matches = vim.fn.matchstrlist(lines, inexpr)
|
|
local extracted = vim.tbl_map(function(value)
|
|
return value['text']
|
|
end, matches)
|
|
|
|
-- Concat matches according to separator
|
|
local value = table.concat(extracted, outsep)
|
|
-- Trigger global search to highlight results
|
|
vim.cmd('g/' .. inexpr .. '/')
|
|
-- Write to system register
|
|
vim.fn.setreg('+', value)
|
|
|
|
print('Found ' .. #extracted .. ' results!')
|
|
end
|
|
|
|
vim.keymap.set({ 'n', 'v' }, '<leader>gy', global_cmd_yank, { desc = '[G]lobal command [Y]ank' })
|
|
|
|
-- Fix filename keymap
|
|
vim.keymap.set({ 'n', 'v' }, '<leader>fp', function()
|
|
-- lua print(string.gsub(vim.api.nvim_buf_get_name(0), vim.fn.getcwd(), ''))
|
|
local cwd = vim.fn.getcwd():lower()
|
|
local path = vim.api.nvim_buf_get_name(0):lower()
|
|
local file, _ = string.gsub(path, cwd .. '\\', '')
|
|
vim.cmd('0f | file ' .. file)
|
|
end, { desc = '[F]ile Fix Relative [P]ath' })
|
|
|
|
if vim.g.neovide then
|
|
-- System clipboard keybinds in normal and visual mode
|
|
vim.keymap.set({ 'n', 'v' }, '<C-S-c>', '"+y', { desc = 'Yank to System clipboard' })
|
|
vim.keymap.set({ 'n', 'v' }, '<C-S-v>', '"+p', { desc = 'Paste from System clipboard' })
|
|
-- Clipboard for command and insert mode
|
|
vim.keymap.set({ 'c', 'i' }, '<C-S-v>', '<C-R>+', { desc = 'Paste from System clipboard' })
|
|
-- Clipboard for terminal mode
|
|
vim.keymap.set({ 't' }, '<C-S-v>', '<C-\\><C-n>"+pi', { desc = 'Paste from System clipboard' })
|
|
end
|
|
|
|
-- [[ Basic Autocommands ]]
|
|
-- See `:help lua-guide-autocommands`
|
|
|
|
-- Highlight when yanking (copying) text
|
|
-- Try it with `yap` in normal mode
|
|
-- See `:help vim.highlight.on_yank()`
|
|
vim.api.nvim_create_autocmd('TextYankPost', {
|
|
desc = 'Highlight when yanking (copying) text',
|
|
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
|
|
callback = function()
|
|
vim.highlight.on_yank()
|
|
end,
|
|
})
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|