feature/DOTF-17 (#30)

Reviewed-on: #30
Co-authored-by: Ethan Lane <ethan@vylpes.com>
Co-committed-by: Ethan Lane <ethan@vylpes.com>
This commit is contained in:
Ethan Lane 2025-07-04 10:51:56 +01:00 committed by Vylpes
parent 5136097447
commit 22d13ffafa
12 changed files with 322 additions and 102 deletions

View file

@ -0,0 +1,36 @@
-- Imports
local U = require("utils")
-- Neovim Alias
local exec = vim.api.nvim_exec -- execute Vimscript
local api = vim.api -- neovim commands
local autocmd = vim.api.nvim_create_autocmd -- execute autocommands
local set = vim.opt -- global options
local cmd = vim.cmd -- execute Vim commands
-- Configs
vim.g.mapleader = " "
set.compatible = false
set.showmatch = true
set.ignorecase = true
set.mouse = "v"
set.hlsearch = true
set.incsearch = true
set.tabstop = 4
set.softtabstop = 4
set.expandtab = true
set.shiftwidth = 4
set.autoindent = true
set.number = true
set.relativenumber = true
set.wildmode = "longest,list"
set.cc = "80"
set.mouse = "a"
set.clipboard = "unnamedplus"
set.cursorline = true
set.ttyfast = true
set.fixeol = false
set.splitright = true
set.splitbelow = true
set.termguicolors = true