2023-06-22 05:32:39 +02:00
|
|
|
--set some aliases to make typing this faster.
|
|
|
|
local cmd = vim.cmd
|
|
|
|
local opt = vim.opt
|
|
|
|
local fn = vim.fn
|
2023-11-04 06:55:51 +01:00
|
|
|
local map = vim.keymap.set
|
2023-06-22 05:32:39 +02:00
|
|
|
|
|
|
|
--leader key is set through a variable, for some reason.
|
|
|
|
vim.g.mapleader = ';'
|
|
|
|
|
2023-11-04 06:55:51 +01:00
|
|
|
|
2023-06-22 05:32:39 +02:00
|
|
|
--helper functions
|
|
|
|
local function keyCode(string)
|
2024-02-22 23:10:47 +01:00
|
|
|
return vim.api.nvim_replace_termcodes(str, true, true, true, true)
|
2023-06-22 05:32:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--options using vim.opt (aliased, of course.)
|
|
|
|
opt.mouse = 'a'
|
|
|
|
opt.lazyredraw = true
|
|
|
|
opt.termguicolors = true
|
|
|
|
opt.autoread = true
|
|
|
|
opt.swapfile = false
|
|
|
|
opt.history = 500
|
|
|
|
opt.formatoptions = 'rojq'
|
|
|
|
--disable hard text wrapping, will only wrap visually.
|
|
|
|
opt.textwidth = 0
|
|
|
|
opt.wrapmargin = 0
|
|
|
|
opt.wrap = true
|
2023-11-04 06:55:51 +01:00
|
|
|
-- opt.linebreak = true
|
2023-06-22 05:32:39 +02:00
|
|
|
opt.breakindent = true
|
2023-11-04 06:55:51 +01:00
|
|
|
--highlight after col
|
|
|
|
opt.colorcolumn = "80,100,120"
|
2023-06-22 05:32:39 +02:00
|
|
|
--add ruler to side of screen.
|
|
|
|
opt.number = true
|
2023-11-04 06:55:51 +01:00
|
|
|
opt.numberwidth=3
|
2023-06-22 05:32:39 +02:00
|
|
|
--displays cordinates of your cursor in statusbar
|
|
|
|
opt.ruler = true
|
|
|
|
--always leave 5 cells between cursor and side of window.
|
|
|
|
opt.scrolloff = 5
|
|
|
|
--better command line completion
|
|
|
|
opt.wildmenu = true
|
|
|
|
--ignore case in search if search is all lowercase.
|
|
|
|
opt.ignorecase = true
|
|
|
|
opt.smartcase = true
|
|
|
|
--show unfinished commands in statusbar.
|
|
|
|
opt.showcmd = true
|
|
|
|
--regex stuff
|
|
|
|
opt.magic = true
|
|
|
|
--always have a status line
|
|
|
|
opt.laststatus = 2
|
|
|
|
--tab stuff
|
|
|
|
opt.tabstop = 4
|
|
|
|
opt.shiftwidth = 0 --zero inherrits tabstop.
|
|
|
|
opt.autoindent = true
|
|
|
|
opt.smartindent = true
|
|
|
|
opt.smarttab = true
|
2024-02-12 23:41:45 +01:00
|
|
|
-- for space based tabs, change expandtab to false.
|
|
|
|
opt.expandtab=false
|
|
|
|
opt.softtabstop=-1 --negative value inherrits shiftwidth.
|
2023-06-22 05:32:39 +02:00
|
|
|
--highlight search results as you type.
|
|
|
|
opt.hlsearch = true
|
|
|
|
opt.incsearch = true
|
|
|
|
--foling stuff
|
|
|
|
opt.foldlevelstart = 5
|
|
|
|
cmd([[source ~/.config/nvim/foldtext.vimrc]])
|
|
|
|
opt.foldmethod = 'indent'
|
|
|
|
opt.foldtext = 'minimal_foldtext()'
|
|
|
|
opt.fillchars = 'stl:=,stlnc: ,vert:|,fold:-'
|
2023-11-04 06:55:51 +01:00
|
|
|
opt.foldcolumn = 'auto:4'
|
2023-06-22 05:32:39 +02:00
|
|
|
opt.foldenable = true
|
|
|
|
opt.foldignore = ''
|
2024-01-10 23:04:56 +01:00
|
|
|
--display whitespace as other chars:
|
|
|
|
opt.list = true
|
|
|
|
opt.listchars = {
|
|
|
|
tab = '>-',
|
|
|
|
eol = '↲',
|
|
|
|
nbsp='␣',
|
|
|
|
trail='•',
|
|
|
|
extends = '⟩',
|
|
|
|
precedes = '⟨'
|
|
|
|
}
|
|
|
|
opt.showbreak = '↪'
|
2023-06-22 05:32:39 +02:00
|
|
|
|
|
|
|
--keyboard mappings
|
2023-11-04 06:55:51 +01:00
|
|
|
local function optsWithDesc(desc)
|
2024-02-22 23:10:47 +01:00
|
|
|
return {silent=true, desc=desc}
|
2023-11-04 06:55:51 +01:00
|
|
|
end
|
2023-06-22 05:32:39 +02:00
|
|
|
local opts = { noremap = true, silent = true }
|
|
|
|
--toggle spell check
|
2023-11-04 06:55:51 +01:00
|
|
|
map('n', '<leader>sp', ':setlocal spell!<CR>', optsWithDesc("toggle spell check"))
|
|
|
|
--buffer stuff (gt and gT are prev/next tab in stock vim)
|
|
|
|
map('n', 'gf', ':bnext<CR>', optsWithDesc("next buffer"))
|
|
|
|
map('n', 'gF', ':bprevious<CR>', optsWithDesc("prev buffer"))
|
2023-06-22 05:32:39 +02:00
|
|
|
--use ctrl+direction to move between splits.
|
2023-11-04 06:55:51 +01:00
|
|
|
map('n', '<C-h>', '<C-w>h', optsWithDesc("move to split to the right"))
|
|
|
|
map('n', '<C-j>', '<C-w>j', optsWithDesc("move to split below"))
|
|
|
|
map('n', '<C-k>', '<C-w>k', optsWithDesc("move to split above"))
|
|
|
|
map('n', '<C-l>', '<C-w>l', optsWithDesc("move to split to the left"))
|
2023-06-22 05:32:39 +02:00
|
|
|
--toggle folds with space.
|
2023-11-04 06:55:51 +01:00
|
|
|
map('n', '<Space>', 'za', optsWithDesc("toggle fold"))
|
2023-06-22 05:32:39 +02:00
|
|
|
--clear highlighting with leader+h
|
2023-11-04 06:55:51 +01:00
|
|
|
map('', '<leader>h', ':nohls<CR>', optsWithDesc("clear highlighting"))
|
|
|
|
--open file browser with leader+t
|
|
|
|
map('n', '<leader>t', ':Lexplore<CR>', optsWithDesc("toggle file browser"))
|