Compare commits

...

9 Commits

Author SHA1 Message Date
48c132421a Godo 2026-07-02 00:05:38 +02:00
d607b7f887 Godo 2026-06-28 01:55:30 +02:00
8426e32f9d [alacritty] Change font 2026-05-24 16:51:43 +02:00
4143572ba1 [neovim] Change colorscheme 2026-05-24 16:42:23 +02:00
a0c8f046c5 [alacritty] Changed background opacity 2026-05-17 23:05:04 +02:00
dd51fcd352 [neovim] Changed style 2026-05-17 23:04:52 +02:00
a14d8aaf55 [neovim] Match float windows background color 2026-04-08 19:32:02 +02:00
82b3eecc11 [neovim] formatting 2026-04-08 19:17:07 +02:00
64e53d1945 [neovim] Disable LSP syntax highlighting 2026-04-08 19:16:13 +02:00
2 changed files with 14 additions and 16 deletions

View File

@@ -1,13 +1,10 @@
[window] [window]
startup_mode = "Maximized" startup_mode = "Maximized"
opacity = 1 # opacity = 0.95
dynamic_padding = true dynamic_padding = true
[font] [font]
normal.family = "CaskaydiaMono Nerd Font" normal.family = "Iosevka Nerd Font"
bold.family = "CaskaydiaMono Nerd Font"
italic.family = "CaskaydiaMono Nerd Font"
bold_italic.family = "CaskaydiaMono Nerd Font"
size = 14.0 size = 14.0
[mouse] [mouse]

View File

@@ -15,7 +15,7 @@ opt.statusline = "[%n] %<%f %h%w%m%r%=%-14.(%l,%c%V%) %P"
-- Block cursor -- Block cursor
opt.guicursor = "" opt.guicursor = ""
-- Hightlight cursor line -- Highlight cursor line
opt.cursorline = true opt.cursorline = true
-- Set termguicolors -- Set termguicolors
@@ -127,18 +127,24 @@ end)
-- [[ AUTOCMDS ]] -- -- [[ AUTOCMDS ]] --
-- Hightlight copied text -- Highlight copied text
vim.api.nvim_create_autocmd("TextYankPost", { vim.api.nvim_create_autocmd("TextYankPost", {
callback = function() vim.highlight.on_yank() end callback = function() vim.highlight.on_yank() end
}) })
-- Disable LSP syntax highlight
vim.api.nvim_create_autocmd("LspAttach", {
group = vim.api.nvim_create_augroup("my.lsp", {}),
callback = function(ev)
local client = assert(vim.lsp.get_client_by_id(ev.data.client_id))
client.server_capabilities.semanticTokensProvider = nil
end
})
-- [[ PLUGINS ]] -- -- [[ PLUGINS ]] --
-- Install plugins -- Install plugins
vim.pack.add({ vim.pack.add({
-- Colorscheme
"https://github.com/habamax/vim-gruvbit",
-- Background trasparency -- Background trasparency
"https://github.com/xiyaowong/transparent.nvim", "https://github.com/xiyaowong/transparent.nvim",
@@ -158,9 +164,6 @@ vim.pack.add({
-- Trailing whitespace -- Trailing whitespace
"https://github.com/kaplanz/retrail.nvim", "https://github.com/kaplanz/retrail.nvim",
-- Indent blankline
"https://github.com/lukas-reineke/indent-blankline.nvim",
-- File tree -- File tree
{ src = "https://github.com/nvim-neo-tree/neo-tree.nvim", version = vim.version.range("3") }, { src = "https://github.com/nvim-neo-tree/neo-tree.nvim", version = vim.version.range("3") },
"https://github.com/nvim-lua/plenary.nvim", "https://github.com/nvim-lua/plenary.nvim",
@@ -180,7 +183,7 @@ vim.cmd.packadd("nvim.difftool")
-- [[ PLUGINS CONFIGURATIONS ]] -- -- [[ PLUGINS CONFIGURATIONS ]] --
cmd.colorscheme("gruvbit") cmd.colorscheme("retrobox")
require("mini.pick").setup() require("mini.pick").setup()
@@ -193,8 +196,6 @@ require("retrail").setup({
} }
}) })
require("ibl").setup()
require("neo-tree").setup({ require("neo-tree").setup({
window = { window = {
width = 32 width = 32