kickstart.nvim/lua/custom/zwergius/set.lua

25 lines
474 B
Lua
Raw Normal View History

2024-01-23 13:13:03 +01:00
-- Line & relative line numbers
vim.opt.number = true
vim.opt.relativenumber = true
-- Indents
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.opt.smartindent = true
-- Set highlight on search
vim.o.hlsearch = false
vim.opt.incsearch = true
-- Filetype overrides
2024-01-24 11:57:14 +01:00
vim.filetype.add {
2024-01-23 13:13:03 +01:00
extension = {
postcss = 'css',
2024-01-24 11:57:14 +01:00
},
}
2024-01-23 13:13:03 +01:00
-- Autocommand create folder(s) for new file
vim.cmd 'source ~/.config/nvim/vim/auto-mkdir.vim'