Remove old config.
This commit is contained in:
parent
d1964f076c
commit
a2692b72ff
10 changed files with 38 additions and 94 deletions
|
@ -1,3 +1,8 @@
|
|||
-- Autocmds are automatically loaded on the VeryLazy event
|
||||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
||||
--
|
||||
-- Add any additional autocmds here
|
||||
-- with `vim.api.nvim_create_autocmd`
|
||||
--
|
||||
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
|
||||
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")
|
||||
|
|
|
@ -10,8 +10,6 @@ vim.keymap.set("n", "n", "nzzzv")
|
|||
vim.keymap.set("n", "N", "Nzzzv")
|
||||
|
||||
-- Paste
|
||||
vim.api.nvim_set_option("clipboard", "")
|
||||
|
||||
vim.keymap.set("n", "<leader>y", '"+y')
|
||||
vim.keymap.set("v", "<leader>y", '"+y')
|
||||
vim.keymap.set("n", "<leader>Y", '"+Y')
|
||||
|
|
|
@ -33,7 +33,7 @@ require("lazy").setup({
|
|||
install = { colorscheme = { "tokyonight", "habamax" } },
|
||||
checker = {
|
||||
enabled = true, -- check for plugin updates periodically
|
||||
notify = true, -- notify on update
|
||||
notify = false, -- notify on update
|
||||
}, -- automatically check for plugin updates
|
||||
performance = {
|
||||
rtp = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue