- Create separate config files for telescope and nvim-tree in lua/configs/ - Fix plugin syntax (requires -> dependencies for lazy.nvim) - Consolidate duplicate settings into appropriate files - Move plugin configs out of options.lua and mappings.lua - Clean up init.lua to only contain SQL autocmds Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
16 lines
481 B
Lua
16 lines
481 B
Lua
require "nvchad.options"
|
|
|
|
-- add yours here!
|
|
|
|
local opt = vim.opt
|
|
|
|
-- Tab settings
|
|
opt.expandtab = true -- Use spaces instead of tabs
|
|
opt.shiftwidth = 4 -- Number of spaces for each indentation level
|
|
opt.tabstop = 4 -- Number of spaces a tab counts for
|
|
opt.softtabstop = 4 -- Number of spaces a tab feels like when editing
|
|
|
|
-- Other options
|
|
opt.conceallevel = 1 -- Conceal level for markdown, etc.
|
|
opt.hidden = true -- Allow hidden buffers
|