blob: 332d2af87a3846df1d1279d2863c056e89d34b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-- 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
-- For clipboard over ssh
-- see https://github.com/LazyVim/LazyVim/discussions/2715#discussioncomment-11857449
vim.opt.clipboard = "unnamedplus"
vim.g.clipboard = {
name = "OSC 52",
copy = {
["+"] = require("vim.ui.clipboard.osc52").copy("+"),
["*"] = require("vim.ui.clipboard.osc52").copy("*"),
},
paste = {
["+"] = require("vim.ui.clipboard.osc52").paste("+"),
["*"] = require("vim.ui.clipboard.osc52").paste("*"),
},
}
-- Python: use ruff instead of pyright
-- don't want a full LSP, just linting and formatting
-- see https://www.lazyvim.org/extras/lang/python
vim.g.lazyvim_python_lsp = "ruff"
|