Compare commits
4 Commits
8efd41c3c4
...
4a74be7aa8
Author | SHA1 | Date | |
---|---|---|---|
4a74be7aa8 | |||
41d3813638 | |||
dc4ad9979b | |||
f56f19eaef |
@ -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"
|
||||
|
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user