29 lines
735 B
Lua
29 lines
735 B
Lua
-- This file defines all the global configs
|
|
local set = vim.opt
|
|
|
|
-- Turn on numbers
|
|
set.number = true
|
|
-- Turn off line wrapping
|
|
set.wrap = false
|
|
-- Disable cmdline from bottom
|
|
set.cmdheight = 0
|
|
-- Ignore case while searching except when the search term contains capital letters
|
|
set.ignorecase = true
|
|
set.smartcase = true
|
|
-- Use 4 spaces and properly adjust them for files using TAB
|
|
set.tabstop = 4
|
|
set.shiftwidth = 4
|
|
set.softtabstop = 4
|
|
set.expandtab = true
|
|
-- Turn on spell checking
|
|
set.spell = true
|
|
-- Enable mouse support
|
|
set.mouse = 'n'
|
|
-- Enable programming dictionary
|
|
set.spelllang = { "en", "programming" }
|
|
|
|
-- Disable unused plugins
|
|
vim.g.loaded_perl_provider = 0
|
|
vim.g.loaded_node_provider = 0
|
|
vim.g.loaded_ruby_provider = 0
|
|
|