simplify shared nvim
This commit is contained in:
parent
0785551fd6
commit
4e2a91fbe6
@ -1,57 +1,15 @@
|
|||||||
-- [[ Basic Keymaps ]]
|
-- Map Leader
|
||||||
-- See `:help vim.keymap.set()`
|
|
||||||
|
|
||||||
-- Map 'jk' to escape in insert mode
|
|
||||||
vim.keymap.set('i', 'jk', '<Esc>', { desc = 'Exit insert mode with jk' })
|
|
||||||
|
|
||||||
-- 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', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' })
|
|
||||||
|
|
||||||
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
|
|
||||||
-- for people to discover. Otherwise, you normally need to press <C-\><C-n>, which
|
|
||||||
-- is not what someone will guess without a bit more experience.
|
|
||||||
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
|
|
||||||
|
|
||||||
-- 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' })
|
|
||||||
|
|
||||||
-- [[ 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,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- ---------------------------------------------------
|
|
||||||
-- ---------------------------------------------------
|
|
||||||
|
|
||||||
-- Set <space> as the leader key
|
|
||||||
-- See `:help mapleader`
|
|
||||||
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
|
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
vim.g.maplocalleader = " "
|
vim.g.maplocalleader = " "
|
||||||
|
|
||||||
-- [[ Setting options ]]
|
-- Use Nerd Font
|
||||||
-- See `:help vim.opt`
|
vim.g.have_nerd_font = true
|
||||||
-- NOTE: You can change these options as you wish!
|
|
||||||
-- For more options, you can see `:help option-list`
|
-- Add vertical line
|
||||||
|
-- vim.opt.colorcolumn = "100"
|
||||||
|
|
||||||
|
-- Enable TrueColor
|
||||||
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
-- Disable Neovim background
|
-- Disable Neovim background
|
||||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||||
@ -71,28 +29,24 @@ vim.opt.smartindent = true -- Do smart autoindenting when starting a new line
|
|||||||
-- Disable line wrapping
|
-- Disable line wrapping
|
||||||
vim.opt.wrap = false
|
vim.opt.wrap = false
|
||||||
|
|
||||||
|
-- Enable break indent
|
||||||
|
vim.opt.breakindent = true
|
||||||
|
|
||||||
-- Make line numbers default
|
-- Make line numbers default
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
|
|
||||||
-- Enable mouse mode, can be useful for resizing splits for example!
|
-- Enable mouse mode, can be useful for resizing splits for example
|
||||||
vim.opt.mouse = "a"
|
vim.opt.mouse = "a"
|
||||||
|
|
||||||
-- Don't show the mode, since it's already in the status line
|
-- Full path on status line
|
||||||
vim.opt.showmode = true
|
|
||||||
vim.opt.statusline = "%F%m%r%h%w%=%l,%c %P"
|
vim.opt.statusline = "%F%m%r%h%w%=%l,%c %P"
|
||||||
|
|
||||||
-- Sync clipboard between OS and Neovim.
|
-- Sync clipboard between OS and Neovim
|
||||||
-- Schedule the setting after `UiEnter` because it can increase startup-time.
|
|
||||||
-- Remove this option if you want your OS clipboard to remain independent.
|
|
||||||
-- See `:help 'clipboard'`
|
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
vim.opt.clipboard = "unnamedplus"
|
vim.opt.clipboard = "unnamedplus"
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- Enable break indent
|
|
||||||
vim.opt.breakindent = true
|
|
||||||
|
|
||||||
-- Save undo history
|
-- Save undo history
|
||||||
vim.opt.undofile = true
|
vim.opt.undofile = true
|
||||||
|
|
||||||
@ -111,11 +65,74 @@ vim.opt.timeoutlen = 300
|
|||||||
vim.opt.splitright = true
|
vim.opt.splitright = true
|
||||||
vim.opt.splitbelow = true
|
vim.opt.splitbelow = true
|
||||||
|
|
||||||
-- Preview substitutions live, as you type!
|
-- Sets how neovim will display certain whitespace characters in the editor.
|
||||||
|
vim.opt.list = true
|
||||||
|
vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "␣" }
|
||||||
|
|
||||||
|
-- Preview substitutions live, as you type
|
||||||
vim.opt.inccommand = "split"
|
vim.opt.inccommand = "split"
|
||||||
|
|
||||||
-- Show which line your cursor is on
|
-- Show which line your cursor is on
|
||||||
vim.opt.cursorline = true
|
vim.opt.cursorline = true
|
||||||
|
|
||||||
-- Minimal number of screen lines to keep above and below the cursor.
|
-- Minimal number of screen lines to keep above and below the cursor
|
||||||
vim.opt.scrolloff = 10
|
vim.opt.scrolloff = 10
|
||||||
|
|
||||||
|
-- Highlight when yanking (copying) text
|
||||||
|
vim.api.nvim_create_autocmd("TextYankPost", {
|
||||||
|
callback = function()
|
||||||
|
vim.highlight.on_yank()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Keymaps
|
||||||
|
|
||||||
|
local remap = require("utils.remap")
|
||||||
|
|
||||||
|
remap.nmap("<leader>q", vim.diagnostic.setloclist, { desc = "Open diagnostic [Q]uickfix list" })
|
||||||
|
|
||||||
|
remap.imap("jk", "<Esc>", { desc = "Exit insert mode with jk" })
|
||||||
|
remap.nmap("<Esc>", "<cmd>nohlsearch<CR>", { desc = "Clear highlights" })
|
||||||
|
|
||||||
|
-- Prevent "x" from overriding the register
|
||||||
|
remap.nmap("x", '"_x')
|
||||||
|
|
||||||
|
-- Window Navigation
|
||||||
|
remap.nmap("<C-h>", "<C-w>h", { desc = "Move focus to the left window" })
|
||||||
|
remap.nmap("<C-l>", "<C-w>l", { desc = "Move focus to the right window" })
|
||||||
|
remap.nmap("<C-j>", "<C-w>j", { desc = "Move focus to the lower window" })
|
||||||
|
remap.nmap("<C-k>", "<C-w>k", { desc = "Move focus to the upper window" })
|
||||||
|
|
||||||
|
-- Tab management
|
||||||
|
remap.nmap("<Leader>tn", ":tabnew<CR>", { desc = "[T]ab [N]ew" })
|
||||||
|
remap.nmap("<Leader>tc", ":tabclose<CR>", { desc = "[T]ab [C]lose" })
|
||||||
|
remap.nmap("<Leader>to", ":tabonly<CR>", { desc = "[T]ab [O]nly" })
|
||||||
|
remap.nmap("<Leader>tl", ":tabnext<CR>", { desc = "[T]ab Next" })
|
||||||
|
remap.nmap("<Leader>th", ":tabprevious<CR>", { desc = "[T]ab Previous" })
|
||||||
|
remap.nmap("<Leader>tm.", ":tabmove +1<CR>", { desc = "[T]ab [M]ove Right" })
|
||||||
|
remap.nmap("<Leader>tm,", ":tabmove -1<CR>", { desc = "[T]ab [M]ove Left" })
|
||||||
|
for i = 1, 9 do
|
||||||
|
remap.nmap(string.format("<Leader>%d", i), string.format("%dgt", i), { desc = string.format("[T]ab %d", i) })
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Buffer Management
|
||||||
|
remap.nmap("<Leader>bl", ":ls<CR>", { desc = "[B]uffer [L]ist" })
|
||||||
|
remap.nmap("<Leader>bd", ":bdelete<CR>", { desc = "[B]uffer [D]elete" })
|
||||||
|
remap.nmap("]b", ":bnext<CR>", { desc = "[B]uffer [N]ext" })
|
||||||
|
remap.nmap("[b", ":bprevious<CR>", { desc = "[B]uffer [P]revious" })
|
||||||
|
remap.nmap("<Leader>bb", ":b<Space>", { desc = "[B]uffer Select" })
|
||||||
|
remap.nmap("<Leader>bo", ":bufdo bd|1bd<CR>", { desc = "[B]uffer Delete Others" })
|
||||||
|
|
||||||
|
-- Terminal
|
||||||
|
remap.nmap("<Leader>tet", function()
|
||||||
|
vim.cmd("terminal")
|
||||||
|
vim.cmd("startinsert")
|
||||||
|
end, { desc = "[T]erminal" })
|
||||||
|
remap.nmap("<leader>ter", function()
|
||||||
|
local buf_dir = vim.fn.expand("%:p:h")
|
||||||
|
vim.cmd("edit term://" .. buf_dir .. "//zsh")
|
||||||
|
vim.cmd("startinsert")
|
||||||
|
end, { desc = "[T]erminal [R]elative" })
|
||||||
|
remap.tmap("<Esc>", "<C-\\><C-n>", { desc = "Terminal Normal Mode" })
|
||||||
|
remap.tmap("jk", "<C-\\><C-n>", { desc = "Terminal Normal Mode" })
|
||||||
|
remap.tmap("<C-w>", "<C-\\><C-n><C-w>", { desc = "Terminal Window Command" })
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user