Restructure to monorepo

This commit is contained in:
Luka Jankovic 2025-01-24 01:18:12 +01:00
parent 2d7c3cd696
commit b37fcbd18f
35 changed files with 1 additions and 2 deletions

View file

@ -1,47 +0,0 @@
-- Line numbers
vim.wo.number = true
-- Tabs
vim.o.expandtab = true
vim.o.smartindent = true
vim.o.tabstop = 4
vim.o.shiftwidth = 4
-- Clipboard
vim.o.clipboard = "unnamedplus"
vim.api.nvim_exec(
[[
augroup YankHighlight
autocmd!
autocmd TextYankPost * silent! lua vim.highlight.on_yank()
augroup end
]],
false
)
-- Restore cursor
local restore_cursor_augroup = vim.api.nvim_create_augroup("restore_cursor_shape_on_exit", { clear = true })
vim.api.nvim_create_autocmd({ "VimLeave" }, {
group = restore_cursor_augroup,
desc = "restore the cursor shape on exit of neovim",
command = "set guicursor=a:ver20",
})
-- Horizontal Split Line
vim.opt.laststatus = 3
-- Padding around current line
vim.opt.scrolloff = 5
-- Highlight current line
vim.opt.cursorline = true
-- Column limit
vim.opt.colorcolumn = "80"
-- Set signcolumn to prevent lsp flickering
vim.opt.signcolumn = "yes"
-- Always show tabline
vim.opt.laststatus = 2