ascension (re enable primary c+p, treesitter textobjects

This commit is contained in:
iris committed 2023-06-20 15:06:30 -04:00
1 parent 96c139a62e
commit 84782e1599
11 files changed
+126 -58

No files matched your search

+7
View File
@@ -4,11 +4,13 @@ local g = vim.g
-- basic stuff
o.number = true
o.showmode = false
o.clipboard = "unnamedplus"
g.mapleader = " "
g.maplocalleader = ","
vim.cmd("filetype plugin on")
vim.cmd("syntax on")
o.guifont = "Comic\\ Code\\ Ligatures"
-- line break (wrapping) settings
o.linebreak = true
@@ -40,3 +42,8 @@ end
vim.diagnostic.config({
virtual_text = { prefix = "" },
})
-- neovide
if vim.g.neovide then
end