73 lines
1.3 KiB
Lua
73 lines
1.3 KiB
Lua
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
|
|
vim.g.have_nerd_font = true
|
|
|
|
vim.opt.number = true
|
|
|
|
vim.opt.mouse = 'a'
|
|
|
|
vim.opt.showmode = false
|
|
|
|
vim.schedule(function()
|
|
vim.opt.clipboard = 'unnamedplus'
|
|
end)
|
|
|
|
vim.opt.shiftwidth = 2
|
|
vim.opt.tabstop = 2
|
|
vim.opt.smartindent = true
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.breakindent = true
|
|
|
|
vim.opt.undofile = true
|
|
|
|
vim.opt.ignorecase = true
|
|
vim.opt.smartcase = true
|
|
|
|
vim.opt.signcolumn = 'yes'
|
|
|
|
vim.opt.updatetime = 250
|
|
|
|
vim.opt.timeoutlen = 300
|
|
|
|
vim.opt.splitright = true
|
|
vim.opt.splitbelow = true
|
|
|
|
vim.opt.list = true
|
|
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
|
|
|
vim.opt.inccommand = 'split'
|
|
|
|
vim.opt.cursorline = true
|
|
|
|
vim.opt.scrolloff = 8
|
|
|
|
vim.api.nvim_create_autocmd('TextYankPost', {
|
|
desc = 'Highlight when yanking (copying) text',
|
|
group = vim.api.nvim_create_augroup('u-highlight-yank', { clear = true }),
|
|
callback = function()
|
|
vim.highlight.on_yank()
|
|
end,
|
|
})
|
|
|
|
local statusline = require('mini.statusline')
|
|
statusline.setup()
|
|
statusline.section_location = function()
|
|
return '%2l:%-2v'
|
|
end
|
|
vim.cmd.colorscheme 'tokyonight-storm'
|
|
|
|
require('gitsigns').setup({
|
|
signs = {
|
|
add = { text = '+' },
|
|
change = { text = '*' },
|
|
},
|
|
})
|
|
|
|
require('nvim-treesitter.configs').setup({
|
|
highlight = {
|
|
enable = true
|
|
}
|
|
})
|