1
Fork 0

A lot of neovim config updates

This commit is contained in:
Matei Adriel 2022-10-09 03:28:51 +02:00
parent d3ab72c6c8
commit 98e8510ae7
21 changed files with 874 additions and 152 deletions
dotfiles/neovim/lua/my

View file

@ -3,40 +3,46 @@ local helpers = require("my.helpers")
local M = {}
function M.setup()
local opt = vim.opt -- to set options
local opt = vim.opt -- to set options
-- Basic options
opt.joinspaces = false -- No double spaces with join
opt.list = true -- Show some invisible characters
-- Disable filetype.vim
vim.g.do_filetype_lua = true
vim.g.did_load_filetypes = false
opt.number = true -- Show line numbers
opt.relativenumber = true -- Relative line numbers
-- Basic options
opt.joinspaces = false -- No double spaces with join
opt.list = true -- Show some invisible characters
opt.cmdheight = 0 -- Hide command line when it's not getting used
-- TODO: only do this for specific filestypes
opt.expandtab = true -- Use spaces for the tab char
-- Line numbers
opt.number = true -- Show line numbers
opt.relativenumber = true -- Relative line numbers
opt.scrolloff = 4 -- Lines of context
opt.shiftround = true -- Round indent
opt.shiftwidth = 2 -- Size of an indent
opt.termguicolors = true -- True color support
-- TODO: only do this for specific filestypes
opt.expandtab = true -- Use spaces for the tab char
opt.ignorecase = true -- Ignore case
opt.smartcase = true -- Do not ignore case with capitals
opt.scrolloff = 4 -- Lines of context
opt.shiftround = true -- Round indent
opt.shiftwidth = 2 -- Size of an indent
opt.termguicolors = true -- True color support
opt.smartindent = true -- Insert indents automatically
opt.ignorecase = true -- Ignore case
opt.smartcase = true -- Do not ignore case with capitals
opt.splitbelow = true -- Put new windows below current
opt.splitright = true -- Put new windows right of current
opt.smartindent = true -- Insert indents automatically
opt.wrap = false -- Disable line wrap
opt.wildmode = {'list', 'longest'} -- Command-line completion mode
opt.completeopt = {"menu", "menuone", "noselect"}
opt.splitbelow = true -- Put new windows below current
opt.splitright = true -- Put new windows right of current
-- Set leader
helpers.global("mapleader", " ")
opt.wrap = false -- Disable line wrap (by default)
opt.wildmode = { 'list', 'longest' } -- Command-line completion mode
opt.completeopt = { "menu", "menuone", "noselect" }
-- Import other options
require("my.options.folding").setup()
-- Set leader
helpers.global("mapleader", " ")
-- Import other options
require("my.options.folding").setup()
end
return M