Skip to content

Commit

Permalink
feat(nvim): add smooth cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRichardH committed Nov 26, 2023
1 parent 61d97ec commit 1dbaac5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"LazyVim": { "branch": "main", "commit": "68ff818a5bb7549f90b05e412b76fe448f605ffb" },
"LuaSnip": { "branch": "master", "commit": "a4de64570b9620875c8ea04175cd07ed8e32ac99" },
"SchemaStore.nvim": { "branch": "main", "commit": "d7c3d872fc19741148a5e324197f086423680277" },
"SmoothCursor.nvim": { "branch": "main", "commit": "8c2c5d61899a5c0ecc1dc34827a6eda1270cebdf" },
"barbecue": { "branch": "main", "commit": "d38a2a023dfb1073dd0e8fee0c9be08855d3688f" },
"catppuccin": { "branch": "main", "commit": "d7521f6050b94cb0e23067f63829d86886f870fe" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
Expand Down
12 changes: 12 additions & 0 deletions config/nvim/lua/plugins/smooth-cursor.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
return {
"gen740/SmoothCursor.nvim",
config = function()
require("smoothcursor").setup({
cursor = "👉",
fancy = {
enable = false,
head = { cursor = "👉" },
},
})
end,
}

0 comments on commit 1dbaac5

Please sign in to comment.