dotfiles/nix/home-manager/modules/packages/neovim/core.lua
Anthony Cicchetti 09ad3d10e7 some stuff
2024-03-06 10:17:27 -05:00

41 lines
1 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

vim.o.expandtab = true
vim.o.foldlevel = 2
local guifont = { "Iosevka Custom" }
if vim.loop.os_uname().sysname == "Darwin" then
table.insert(guifont, "Apple Color Emoji")
else
table.insert(guifont, "Noto Color Emoji")
end
vim.o.guifont = table.concat(guifont, ",") .. ":14"
vim.o.hidden = true
vim.o.ignorecase = true
vim.o.inccommand = "split"
vim.o.list = true
vim.o.listchars = "tab:→ ,eol:¬,trail:•,extends:,precedes:,space:‣"
vim.o.mouse = "a"
vim.o.number = true
vim.o.relativenumber = true
vim.o.sessionoptions = "blank,curdir,folds,help,tabpages,winsize"
vim.o.shiftwidth = 4
vim.o.showbreak = ""
vim.o.showtabline = 1
vim.o.signcolumn = "yes"
vim.o.smartcase = true
vim.o.smarttab = true
vim.o.splitbelow = true
vim.o.splitright = true
vim.o.tabstop = 4
vim.o.termguicolors = true
vim.o.timeoutlen = 500
vim.o.title = true
vim.o.updatetime = 500
vim.o.wildmenu = true
vim.o.wildmode = "list:longest,full"
vim.api.nvim_create_autocmd("TextYankPost", {
callback = function()
vim.highlight.on_yank()
end,
})
require("gitlinker").setup()