25 lines
416 B
Lua
25 lines
416 B
Lua
vim.opt.shortmess = vim.opt.shortmess + "I"
|
|
|
|
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = " \\"
|
|
|
|
vim.opt.number = true
|
|
vim.opt.relativenumber = true
|
|
vim.opt.signcolumn = "yes"
|
|
vim.opt.title = true
|
|
|
|
vim.opt.ignorecase = true
|
|
vim.opt.smartcase = true
|
|
|
|
vim.opt.timeout = false
|
|
|
|
vim.o.undofile = true
|
|
|
|
vim.cmd([[autocmd TermOpen * startinsert]]);
|
|
|
|
vim.filetype.add({
|
|
extension = {
|
|
["kitty-session"] = 'kitty',
|
|
},
|
|
})
|