diff options
| author | Max Bossing <info@maxbossing.de> | 2025-08-12 15:47:14 +0200 | 
|---|---|---|
| committer | Max Bossing <info@maxbossing.de> | 2025-08-12 15:47:14 +0200 | 
| commit | 991c272423d8fa41c9dd21169ce0c3e9979f1c64 (patch) | |
| tree | b4343fb3035989a6bfcafcb02e7db91e91a39785 /nvim/lua/options.lua | |
| parent | 7c8d9ae3b0b5e843ffe10fad81e776806c0c5a8b (diff) | |
feat: finally a usable neovim config (switched to LazyVim)
Diffstat (limited to 'nvim/lua/options.lua')
| -rw-r--r-- | nvim/lua/options.lua | 36 | 
1 files changed, 0 insertions, 36 deletions
| diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua deleted file mode 100644 index 9de7b72..0000000 --- a/nvim/lua/options.lua +++ /dev/null @@ -1,36 +0,0 @@ -vim.g.loaded_netrw = 1 -vim.g.loaded_netrwPlugin = 1 - -vim.opt.termguicolors = true -vim.o.background = "dark" - -vim.opt.colorcolumn = "80" -vim.opt.updatetime = 50 - --- Map leader to space -vim.g.mapleader = ' ' - --- Tabs sind für lutscher -vim.opt.tabstop = 2 -vim.opt.shiftwidth = 2 -vim.o.expandtab = true -vim.opt.smartindent = true - --- QoL for search -vim.opt.hlsearch = false -vim.opt.incsearch = true - --- Scrolling -vim.opt.scrolloff = 10 -vim.opt.signcolumn = "yes" -vim.opt.isfname:append('@-@') - --- Numbers on the side -vim.wo.number = true -vim.wo.relativenumber = true  -vim.o.ruler = true - --- Show something in the command line not sure -vim.o.showcmd = true - -vim.diagnostic.config({ virtual_text = false }) | 
