fix: remove deprecated functions

This commit is contained in:
Nydragon 2024-05-30 18:58:02 +09:00
parent b6633152e6
commit 05ded629ca
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -1,18 +1,8 @@
vim.o.nocompatible = true
vim.o.showmatch = true vim.o.showmatch = true
vim.wo.number = true vim.wo.number = true
vim.wo.relativenumber = true vim.wo.relativenumber = true
-- Set background color for ColorColumn
vim.o.cc = 80
vim.api.nvim_exec(
[[
hi ColorColumn ctermbg=black guibg=black
]],
false
)
vim.o.mouse = "a" vim.o.mouse = "a"
vim.o.ignorecase = true vim.o.ignorecase = true
@ -36,14 +26,6 @@ vim.o.ttyfast = true
vim.g.nvim_tree_respect_buf_cwd = 1 vim.g.nvim_tree_respect_buf_cwd = 1
-- Highlight on yank (copy). It will do a nice highlight blink of the thing you just copied.
vim.api.nvim_exec(
[[
autocmd! TextYankPost * silent! lua vim.highlight.on_yank()
]],
false
)
--Set completeopt to have a better completion experience --Set completeopt to have a better completion experience
-- :help completeopt -- :help completeopt
-- menuone: popup even when there's only one match -- menuone: popup even when there's only one match
@ -53,7 +35,7 @@ vim.api.nvim_exec(
-- updatetime: set updatetime for CursorHold -- updatetime: set updatetime for CursorHold
vim.opt.completeopt = { "menuone", "noselect", "noinsert" } vim.opt.completeopt = { "menuone", "noselect", "noinsert" }
vim.opt.shortmess = vim.opt.shortmess + { c = true } vim.opt.shortmess = vim.opt.shortmess + { c = true }
vim.api.nvim_set_option("updatetime", 300) vim.g.updatetime = 300
-- Fixed column for diagnostics to appear -- Fixed column for diagnostics to appear
-- Show autodiagnostic popup on cursor hover_range -- Show autodiagnostic popup on cursor hover_range
@ -65,13 +47,16 @@ vim.api.nvim_create_autocmd("CursorHold", {
end, end,
}) })
vim.cmd("set signcolumn=yes") vim.api.nvim_create_autocmd("TextYankPost", {
-- Enable filetype plugins callback = function()
vim.cmd("filetype plugin on") vim.highlight.on_yank()
end,
})
vim.g.signcolumn = "yes"
vim.g.mapleader = " " vim.g.mapleader = " "
vim.o.termguicolors = 1
vim.api.nvim_set_option("clipboard", "unnamedplus") vim.g.clipboard = "unnamedplus"
require("plugins") require("plugins")