13 lines
490 B
Lua
13 lines
490 B
Lua
-- Options are automatically loaded before lazy.nvim startup
|
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
|
-- Add any additional options here
|
|
|
|
-- disable LazyVim auto format
|
|
-- https://www.reddit.com/r/neovim/comments/1arkhtx/how_to_disable_format_on_save_in_lazyvim/
|
|
vim.g.autoformat = false
|
|
|
|
-- disabling sync with system clipboard because I don't like an easy way
|
|
vim.opt.clipboard = ""
|
|
|
|
vim.g.snacks_animate = false
|