mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
add: update config blink cursor
This commit is contained in:
parent
97dda35744
commit
bc3bdec4f8
5 changed files with 19 additions and 4 deletions
9
lua/custom/plugins/imagepreview.lua
Normal file
9
lua/custom/plugins/imagepreview.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
-- {
|
||||
-- "https://github.com/adelarsq/image_preview.nvim",
|
||||
-- event = "VeryLazy",
|
||||
-- config = function()
|
||||
-- require("image_preview").setup()
|
||||
-- end,
|
||||
-- },
|
||||
}
|
|
@ -56,3 +56,9 @@ vim.opt.formatoptions:remove({ "t", "c", "q", "j" })
|
|||
vim.opt.formatoptions = "croql"
|
||||
-- vim.opt.formatoptions:remove({ "c", "r", "o" }) -- don't insert the current comment leader automatically for auto-wrapping comments using 'textwidth', hitting <Enter> in insert mode, or hitting 'o' or 'O' in normal mode.
|
||||
vim.opt.runtimepath:remove("/usr/share/vim/vimfiles") -- separate vim plugins from neovim in case vim still in use
|
||||
-- config for blink cursor in normal, visual and insert mode
|
||||
-- vim.opt.guicursor = {
|
||||
-- "n-v-c:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100",
|
||||
-- "i-ci:ver25-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100",
|
||||
-- "r:hor50-Cursor/lCursor-blinkwait100-blinkon100-blinkoff100",
|
||||
-- }
|
||||
|
|
|
@ -476,7 +476,7 @@ local mappings = {
|
|||
-- U = { "<cmd>lua require'dapui'.toggle({reset = true})<cr>", "Toggle UI" },
|
||||
-- },
|
||||
d = debug_key,
|
||||
p = {
|
||||
z = {
|
||||
name = " Plugins(Lazy)",
|
||||
i = { "<cmd>Lazy install<cr>", "Install" },
|
||||
s = { "<cmd>Lazy sync<cr>", "Sync" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue