neovim-confs/init.lua

208 lines
6.5 KiB
Lua
Raw Normal View History

2024-07-04 11:26:39 +02:00
local opt = vim.opt
local g = vim.g
2024-07-08 10:32:51 +02:00
vim.g.mapleader = ' '
vim.g.maplocalleader = ';'
vim.g.python3_host_prog = '/usr/bin/python3'
vim.o.mouse = 'a' -- mouse does annoying things for me if it's not 'a'
vim.o.signcolumn = 'yes'
vim.o.clipboard = '' -- don't just use the system clipboard
vim.o.wrap = false
vim.o.breakindent = false
vim.o.spell = false
vim.o.conceallevel = 2
vim.o.concealcursor = 'nc'
vim.o.undofile = true
vim.o.undolevels = 10000
vim.o.writebackup = false
vim.o.history = 5000
vim.o.shada = { "'1000", '<50', 's10', 'h' }
vim.g.syntax = true
2024-07-04 11:26:39 +02:00
-- Tabs and Indents
-- ===
2024-07-08 10:32:51 +02:00
vim.o.textwidth = 80 -- Text width maximum chars before wrapping
vim.o.tabstop = 4 -- The number of spaces a tab is
vim.o.shiftwidth = 4 -- Number of spaces to use in auto(indent)
vim.o.smarttab = true -- Tab insert blanks according to 'shiftwidth'
vim.o.autoindent = true -- Use same indenting on new lines
vim.o.smartindent = true -- Smart autoindenting on new lines
vim.o.shiftround = true -- Round indent to multiple of 'shiftwidth'
2024-07-04 11:26:39 +02:00
-- Timing
-- ===
2024-07-08 10:32:51 +02:00
vim.o.ttimeout = true
vim.o.timeoutlen = 500 -- Time out on mappings
vim.o.ttimeoutlen = 10 -- Time out on key codes
vim.o.updatetime = 250 -- Idle time to write swap and trigger CursorHold
2024-07-04 11:26:39 +02:00
-- Searching
-- ===
2024-07-08 10:32:51 +02:00
vim.o.ignorecase = true -- Search ignoring case
vim.o.smartcase = true -- Keep case when searching with *
vim.o.infercase = true -- Adjust case in insert completion mode
vim.o.incsearch = true -- Incremental search
2024-07-04 11:26:39 +02:00
vim.opt.hlsearch = true -- highlight searched stuff
-- Formatting
-- ===
2024-07-08 10:32:51 +02:00
vim.o.wrap = false -- No wrap by default
vim.o.linebreak = true -- Break long lines at 'breakat'
vim.o.breakat = '\\ \\ ;:,!?' -- Long lines break chars
vim.o.startofline = false -- Cursor in same column for few commands
vim.o.splitbelow = true -- Splits open bottom right
vim.o.splitright = true
vim.o.breakindentopt = { shift = 2, min = 20 }
vim.o.formatoptions = '' -- see :h fo-table & :h formatoptions
2024-07-04 10:55:27 +02:00
vim.opt.breakindent = true
2024-07-04 11:26:39 +02:00
-- Diff
-- ===
2024-07-04 10:55:27 +02:00
2024-07-08 10:32:51 +02:00
vim.o.diffopt:append { 'iwhite', 'indent-heuristic', 'algorithm:patience' }
vim.o.wildmode = 'longest:full,full' -- Command-line completion mode
2024-07-04 10:55:27 +02:00
2024-07-04 11:26:39 +02:00
-- Folds
-- ===
2024-07-04 10:55:27 +02:00
2024-07-08 10:32:51 +02:00
vim.o.foldlevel = 10 -- start with all folds open
2024-07-04 10:55:27 +02:00
2024-07-04 11:26:39 +02:00
-- Editor UI
-- ===
2024-07-04 10:55:27 +02:00
2024-07-04 12:09:09 +02:00
vim.o.guifont = 'FiraCode Nerd Font:h15'
2024-07-08 10:32:51 +02:00
vim.o.termguicolors = true
vim.o.shortmess = 'xsTOInfFitloCaAs'
vim.o.showmode = true -- Show mode in cmd window
vim.o.scrolloff = 10 -- Keep at least n lines above/below
vim.o.sidescrolloff = 10 -- Keep at least n lines left/right
vim.o.numberwidth = 2 -- Minimum number of columns to use for the line number
vim.o.number = true -- Show line numbers
vim.o.relativenumber = true -- Show relative line numbers
vim.o.ruler = true -- Default status ruler
vim.o.showtabline = 1 -- Don't change this, goes back to a vanilla vim default
vim.o.laststatus = 3 -- Always show laststatus
2024-07-04 10:55:27 +02:00
-- Sets how neovim will display certain whitespace characters in the editor.
-- See `:help 'list'`
-- and `:help 'listchars'`
vim.opt.list = true
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
2024-07-04 11:26:39 +02:00
if vim.g.started_by_firenvim == true then
opt.showtabline = 1 -- Don't show tabline in firenvim, unless multitab
opt.laststatus = 1 -- Don't show laststatus in firenvim
opt.wrap = true
end
2024-07-04 10:55:27 +02:00
-- Preview substitutions live, as you type!
vim.opt.inccommand = 'split'
2024-07-04 11:26:39 +02:00
if vim.g.neovide == true then
-- fulscreen with F11
2024-07-04 12:09:09 +02:00
vim.api.nvim_set_keymap('n', '<F11>', ':let g:neovide_fullscreen = !g:neovide_fullscreen<CR>', {})
2024-07-04 11:26:39 +02:00
vim.g.neovide_underline_automatic_scaling = true
-- vim.g.neovide_floating_blur_amount_x = 2.0
-- vim.g.neovide_floating_blur_amount_y = 2.0
vim.g.neovide_scroll_animation_length = 0.1
-- vim.g.neovide_cursor_animation_length = 0
-- vim.g.neovide_cursor_trail_size = 0
vim.g.neovide_hide_mouse_when_typing = true
vim.g.neovide_fullscreen = true
end
2024-07-08 10:32:51 +02:00
vim.o.helpheight = 0 -- Disable help window resizing
vim.o.winwidth = 30 -- Minimum width for active window
vim.o.winminwidth = 1 -- Minimum width for inactive windows
vim.o.winheight = 1 -- Minimum height for active window
vim.o.winminheight = 1 -- Minimum height for inactive window
2024-07-04 11:26:39 +02:00
2024-07-08 10:32:51 +02:00
vim.o.showcmd = false -- show command in status line
vim.o.cmdheight = 0
vim.o.cmdwinheight = 5 -- Command-line lines
vim.o.equalalways = true -- Resize windows on split or close
vim.o.colorcolumn = '80' -- Column highlight at textwidth's max character-limit
2024-07-04 11:26:39 +02:00
2024-07-08 10:32:51 +02:00
vim.o.cursorline = true
vim.o.cursorlineopt = { 'number', 'screenline' }
2024-07-04 11:26:39 +02:00
2024-07-08 10:32:51 +02:00
vim.o.pumheight = 10 -- Maximum number of items to show in the popup menu
vim.o.pumwidth = 10 -- Minimum width for the popup menu
vim.o.pumblend = 10 -- Popup blend
2024-07-04 11:26:39 +02:00
-- Spelling correction
-- ===
2024-07-08 10:32:51 +02:00
vim.o.spell = false -- manually enable spell with `set spell` or `<leader>ts`
vim.o.spelllang = 'en,de_de,'
vim.o.spellsuggest = 'double,50,timeout:5000'
2024-07-04 11:26:39 +02:00
-- autocommands
-- ===
local function augroup(name)
2024-07-04 12:09:09 +02:00
return vim.api.nvim_create_augroup('plex_' .. name, {})
2024-07-04 11:26:39 +02:00
end
2023-01-07 09:11:43 +01:00
2024-07-04 10:55:27 +02:00
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`
-- [[ 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,
})
-- [[ Install `lazy.nvim` plugin manager ]]
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
end ---@diagnostic disable-next-line: undefined-field
2023-01-07 09:11:43 +01:00
vim.opt.rtp:prepend(lazypath)
2024-07-04 10:55:27 +02:00
2024-07-04 12:09:09 +02:00
require 'custom.maps'
2024-07-08 10:32:51 +02:00
require 'custom.autocmds'
2024-07-04 12:09:09 +02:00
require('lazy').setup({
{ import = 'custom.plugins' },
}, {
ui = {
-- If you are using a Nerd Font: set icons to an empty table which will use the
-- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table
icons = vim.g.have_nerd_font and {} or {
cmd = '',
config = '🛠',
event = '📅',
ft = '📂',
init = '',
keys = '🗝',
plugin = '🔌',
runtime = '💻',
require = '🌙',
source = '📄',
start = '🚀',
task = '📌',
lazy = '💤 ',
},
},
})
2024-07-04 11:26:39 +02:00
2024-07-04 12:09:09 +02:00
require 'kickstart.health'
2024-07-04 10:55:27 +02:00
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et