autoformat

This commit is contained in:
2024-09-30 06:12:57 +02:00
parent 2bed3cbe6e
commit b9b77abfa4
8 changed files with 116 additions and 109 deletions

View File

@@ -1,7 +1,7 @@
-- define common options
local opts = {
noremap = true, -- non-recursive
silent = true, -- do not show message
noremap = true, -- non-recursive
silent = true, -- do not show message
}
local map = vim.keymap.set
@@ -18,10 +18,10 @@ map('n', '<leader>wk', '<C-w>k', opts)
map('n', '<leader>wl', '<C-w>l', opts)
local step_size = 4
map('n', '<leader>wJ', ':resize -'.. step_size ..'<CR>', opts)
map('n', '<leader>wK', ':resize +'.. step_size ..'<CR>', opts)
map('n', '<leader>wH', ':vertical resize -'.. step_size ..'<CR>', opts)
map('n', '<leader>wL', ':vertical resize +'.. step_size ..'<CR>', opts)
map('n', '<leader>wJ', ':resize -' .. step_size .. '<CR>', opts)
map('n', '<leader>wK', ':resize +' .. step_size .. '<CR>', opts)
map('n', '<leader>wH', ':vertical resize -' .. step_size .. '<CR>', opts)
map('n', '<leader>wL', ':vertical resize +' .. step_size .. '<CR>', opts)
map('n', '<leader>wn', ':windo new<CR>', opts)
map('n', '<leader>wc', ':close<CR>', opts)

View File

@@ -1,26 +1,26 @@
-- Hint: use `:h <option>` to figure out the meaning if needed
vim.opt.clipboard = 'unnamedplus' -- use system clipboard
vim.opt.completeopt = {'menu', 'menuone', 'noselect'}
vim.opt.mouse = 'a' -- allow the mouse to be used in Nvim
vim.opt.clipboard = 'unnamedplus' -- use system clipboard
vim.opt.completeopt = { 'menu', 'menuone', 'noselect' }
vim.opt.mouse = 'a' -- allow the mouse to be used in Nvim
-- Tab
local tabstops = 4
vim.opt.tabstop = tabstops -- number of visual spaces per TAB
vim.opt.softtabstop = tabstops -- number of spacesin tab when editing
vim.opt.shiftwidth = tabstops -- insert 4 spaces on a tab
vim.opt.expandtab = true -- tabs are spaces, mainly because of python
vim.opt.tabstop = tabstops -- number of visual spaces per TAB
vim.opt.softtabstop = tabstops -- number of spacesin tab when editing
vim.opt.shiftwidth = tabstops -- insert 4 spaces on a tab
vim.opt.expandtab = true -- tabs are spaces, mainly because of python
-- UI config
vim.opt.number = true -- add numbers to each line on the left side
vim.opt.relativenumber = true -- show relative numbers
vim.opt.cursorline = true -- highlight cursor line underneath the cursor horizontally
vim.opt.splitbelow = true -- open new vertical split bottom
vim.opt.splitright = true -- open new horizontal splits right
vim.opt.termguicolors = true -- enabl 24-bit RGB color in the TUI
vim.opt.showmode = true -- we are experienced,we know we need the "-- INSERT --" mode hint
vim.opt.number = true -- add numbers to each line on the left side
vim.opt.relativenumber = true -- show relative numbers
vim.opt.cursorline = true -- highlight cursor line underneath the cursor horizontally
vim.opt.splitbelow = true -- open new vertical split bottom
vim.opt.splitright = true -- open new horizontal splits right
vim.opt.termguicolors = true -- enabl 24-bit RGB color in the TUI
vim.opt.showmode = true -- we are experienced,we know we need the "-- INSERT --" mode hint
-- Searching
vim.opt.incsearch = true -- search as characters are entered
vim.opt.hlsearch = true -- highlight matches
vim.opt.ignorecase = true -- ignore case in searches by default
vim.opt.smartcase = true -- but make it case sensitive if an uppercase is entered
vim.opt.incsearch = true -- search as characters are entered
vim.opt.hlsearch = true -- highlight matches
vim.opt.ignorecase = true -- ignore case in searches by default
vim.opt.smartcase = true -- but make it case sensitive if an uppercase is entered