summaryrefslogtreecommitdiff
path: root/dot-config/nvim/init.lua
diff options
context:
space:
mode:
authorJosé Juan Loeza Sierra <jj@xz6ze.com>2026-03-31 20:51:00 -0700
committerJosé Juan Loeza Sierra <jj@xz6ze.com>2026-03-31 20:51:00 -0700
commit6bd0938c018b52c138d608977043467eae93fefd (patch)
treed938dd42afa04270c8983509d3c2eb5b624066f9 /dot-config/nvim/init.lua
parent288f9c41275288a2bd0193986f22206c81c2b5cf (diff)
remove neovim
Diffstat (limited to 'dot-config/nvim/init.lua')
-rw-r--r--dot-config/nvim/init.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/dot-config/nvim/init.lua b/dot-config/nvim/init.lua
deleted file mode 100644
index 6b888a6..0000000
--- a/dot-config/nvim/init.lua
+++ /dev/null
@@ -1,29 +0,0 @@
--- General
-vim.g.mapleader = " "
-
-vim.o.undofile = true -- Persistant undo
-
--- UI
-vim.o.cmdheight = 0 -- Puts Lualine at very bottom
-vim.o.cursorline = true -- Current line highlighting
-vim.o.number = true -- Show line numbers
-vim.o.relativenumber = true -- Relative line numbers
-vim.o.signcolumn = "yes" -- Always show signcolumn (less flicker)
-vim.o.splitbelow = true -- Horizontal splits will be below
-vim.o.splitright = true -- Vertical splits will be to the right
-vim.o.termguicolors = true -- Enable 24-bit RGB color in TUI
-vim.o.winborder = "single" -- Use border in floating windows
-
--- Editing
-vim.o.autoindent = true -- Use auto indent
-vim.o.expandtab = true -- Convert tabs to spaces
-vim.o.ignorecase = true -- Ignore case during search
-vim.o.incsearch = true -- Show search matches while typing
-vim.o.shiftwidth = 2 -- Use this number of spaces for indentation
-vim.o.smartindent = true -- Make indenting smart
-vim.o.tabstop = 2 -- Show tab as this number of spaces
-
--- TODO: consider not using clipboard for all operations
--- see :h clipboard
-vim.opt.clipboard = "unnamedplus"
-vim.g.clipboard = "osc52"