Compare commits

..

4 Commits

Author SHA1 Message Date
4a74be7aa8 chore(deps): update dependency erlang to v27.2.4 2025-02-22 15:56:06 +00:00
41d3813638 chore(deps): update dependency poetry to v2.1.1 (#184)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [poetry](https://github.com/python-poetry/poetry) ([changelog](https://python-poetry.org/history/)) | patch | `2.1.0` -> `2.1.1` |

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45OC4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTguMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: #184
Co-authored-by: renovate-bot <renovate-bot@dubas.dev>
Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
2025-02-22 15:55:54 +00:00
dc4ad9979b feat(neovim): improve smear cursor setup (#189)
Setup based on [`smear-cursor.nvim` examples][0].

[0]: https://github.com/sphamba/smear-cursor.nvim?tab=readme-ov-file#examples

Reviewed-on: #189
Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
2025-02-22 15:55:03 +00:00
f56f19eaef chore(nvim): use gruvbox-material (#188)
Reviewed-on: #188
Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
2025-02-22 15:51:58 +00:00
3 changed files with 26 additions and 8 deletions

View File

@ -37,7 +37,7 @@ go = "1.24.0"
lua = "5.4.7"
luajit = "2.0.5"
node = "22.14.0"
poetry = "2.1.0"
poetry = "2.1.1"
python = "3.13.2"
r = "4.4.2"
rust = "1.84.1"

View File

@ -276,6 +276,13 @@ return {
},
{
'sphamba/smear-cursor.nvim',
opts = {},
opts = {
cursor_color = '#ff8800',
gamma = 1,
hide_target_hack = true,
stiffness = 0.3,
trailing_exponent = 10,
trailing_stiffness = 0.1,
},
},
}

View File

@ -1,5 +1,5 @@
diff --git a/init.lua b/init.lua
index 5cac3d1..099855a 100644
index 5cac3d1..813b1b4 100644
--- a/init.lua
+++ b/init.lua
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
@ -142,14 +142,15 @@ index 5cac3d1..099855a 100644
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
@@ -890,19 +973,26 @@ require('lazy').setup({
@@ -890,19 +973,37 @@ require('lazy').setup({
--
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'folke/tokyonight.nvim',
+ dependencies = {
+ 'drewxs/ash.nvim',
+ 'wnkz/monoglow.nvim',
+ 'rjshkhr/shadow.nvim'
+ 'rjshkhr/shadow.nvim',
+ 'sainnhe/gruvbox-material',
+ },
priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
@ -171,11 +172,21 @@ index 5cac3d1..099855a 100644
- vim.cmd.colorscheme 'tokyonight-night'
+ -- For monoglow the following variants area available:
+ -- 'monoglow-z', 'monoglow-lack', or 'monoglow-void'.
+ vim.cmd.colorscheme 'shadow'
+ -- gruvbox-material configuration based on https://github.com/gonstoll/dotfiles/blob/2d7ec07bd475c73e7ba1a48b27a2a85315bfd2d1/.config/nvim/lua/plugins/colorscheme/gruvbox.lua#L5-L13
+ vim.g.gruvbox_material_better_performance = 1
+ vim.g.gruvbox_material_foreground = 'material'
+ vim.g.gruvbox_material_background = 'medium'
+ vim.g.gruvbox_material_ui_contrast = 'low'
+ vim.g.gruvbox_material_float_style = 'dim'
+ vim.g.gruvbox_material_enable_italic = 0
+ vim.g.gruvbox_material_disable_italic_comment = 1
+ vim.g.gruvbox_material_cursor = 'red'
+ vim.g.gruvbox_material_disable_terminal_colors = 1
+ vim.cmd.colorscheme 'gruvbox-material'
end,
},
@@ -952,7 +1042,39 @@ require('lazy').setup({
@@ -952,7 +1053,39 @@ require('lazy').setup({
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
opts = {
@ -216,7 +227,7 @@ index 5cac3d1..099855a 100644
-- Autoinstall languages that are not installed
auto_install = true,
highlight = {
@@ -982,17 +1104,17 @@ require('lazy').setup({
@@ -982,17 +1115,17 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',