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]
startup_mode = "Maximized"
opacity = 1
# opacity = 0.95
dynamic_padding = true
[font]
normal.family = "CaskaydiaMono Nerd Font"
bold.family = "CaskaydiaMono Nerd Font"
italic.family = "CaskaydiaMono Nerd Font"
bold_italic.family = "CaskaydiaMono Nerd Font"
normal.family = "Iosevka Nerd Font"
size = 14.0
[mouse]

View File

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