20250118.1737193804

This commit is contained in:
fz0x1 2025-01-18 10:50:04 +01:00
parent ba81851219
commit ed1f856b78
17 changed files with 43 additions and 398 deletions

View file

@ -1,7 +1,5 @@
local opt = vim.opt
local api = vim.api
local M = {}
-- local api = vim.api
-- Tab / Indentation
opt.tabstop = 4
@ -47,6 +45,7 @@ vim.opt.wildignore:append({
"*/dist/*",
"*/venv/*",
"*/__pycache__/*",
"*/.stfolder/*",
})
opt.splitkeep = "cursor"
opt.shell = "zsh"
@ -67,8 +66,6 @@ opt.iskeyword:append("-")
opt.mouse = ""
opt.clipboard:append("unnamedplus")
opt.modifiable = true
-- opt.guicursor =
-- "n-v-c:block,i-ci-ve:block,r-cr:hor20,o:hor50,a:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor,sm:block-blinkwait175-blinkoff150-blinkon175"
opt.encoding = "UTF-8"
opt.fileencoding = "utf-8"
opt.cursorline = false
@ -150,9 +147,3 @@ vim.opt.langmap = {
"Ю>",
"Ё/",
}
M.zettelkasten_dir = vim.fn.expand("~/PKM/01 - zettelkasten/")
M.resources_dir = vim.fn.expand("~/PKM/05 - resources/")
M.pkm_dir = vim.fn.expand("~/PKM/")
return M