repos / dotfiles

my dotfiles

commit
335ae3a
parent
e31d360
author
Eric Bower
date
2025-07-14 00:27:48 -0400 EDT
chore: fmt
1 files changed,  +19, -19
M dot_config/nvim/init.lua
+19, -19
 1@@ -1,24 +1,24 @@
 2 local o = vim.opt
 3-o.tabstop          = 2
 4-o.shiftwidth       = 2
 5-o.softtabstop      = 2
 6-o.expandtab        = true
 7-o.wrap             = false
 8-o.autoread         = true
 9-o.list             = true
10-o.signcolumn       = 'yes'
11-o.backspace        = 'indent,eol,start'
12-o.shell            = '/bin/bash'
13-o.colorcolumn      = '80'
14-o.completeopt      = { "menuone", "noselect", "popup" }
15-o.laststatus       = 0
16-o.winborder        = 'rounded'
17-o.undofile         = true
18-o.ignorecase       = true
19-o.smartcase        = true
20+o.tabstop         = 2
21+o.shiftwidth      = 2
22+o.softtabstop     = 2
23+o.expandtab       = true
24+o.wrap            = false
25+o.autoread        = true
26+o.list            = true
27+o.signcolumn      = 'yes'
28+o.backspace       = 'indent,eol,start'
29+o.shell           = '/bin/bash'
30+o.colorcolumn     = '80'
31+o.completeopt     = { "menuone", "noselect", "popup" }
32+o.laststatus      = 0
33+o.winborder       = 'rounded'
34+o.undofile        = true
35+o.ignorecase      = true
36+o.smartcase       = true
37 local g = vim.g
38-g.mapleader        = ','
39-g.maplocalleader   = ','
40+g.mapleader       = ','
41+g.maplocalleader  = ','
42 
43 local opts = { noremap=true, silent=true }
44 local map = vim.keymap.set