Compare commits

...

5 Commits

Author SHA1 Message Date
seajee
143bcdae7c [alacritty] change font 2026-02-03 22:04:32 +01:00
seajee
f8d1ee590a [git] Edit credentials 2026-02-03 21:45:19 +01:00
seajee
c5e33bcea4 [neovim] cursorline and theme 2026-02-03 21:44:59 +01:00
seajee
06d4f5dae5 [neovim] F 2026-01-10 15:28:20 +01:00
seajee
79daa779e5 Revert "[neovim] add dim window plugin"
This reverts commit 8b3013afdc.
2026-01-09 21:20:18 +01:00
3 changed files with 12 additions and 15 deletions

View File

@@ -4,10 +4,10 @@ opacity = 1
dynamic_padding = true dynamic_padding = true
[font] [font]
normal.family = "Iosevka" normal.family = "CaskaydiaMono Nerd Font"
bold.family = "Iosevka" bold.family = "CaskaydiaMono Nerd Font"
italic.family = "Iosevka" italic.family = "CaskaydiaMono Nerd Font"
bold_italic.family = "Iosevka" bold_italic.family = "CaskaydiaMono Nerd Font"
size = 14.0 size = 14.0
[mouse] [mouse]

View File

@@ -1,6 +1,6 @@
[user] [user]
name = seajee name = seajee
email = teapods@proton.me email =
[core] [core]
editor = nvim editor = nvim

View File

@@ -12,6 +12,9 @@ opt.relativenumber = true
-- Block cursor -- Block cursor
opt.guicursor = "" opt.guicursor = ""
-- Hightlight cursor line
opt.cursorline = true
-- File options -- File options
opt.undofile = true opt.undofile = true
opt.undodir = os.getenv("HOME") .. "/.vim/nvim_undodir" opt.undodir = os.getenv("HOME") .. "/.vim/nvim_undodir"
@@ -141,14 +144,11 @@ opt.rtp:prepend(lazypath)
-- Plugins -- Plugins
require("lazy").setup({ require("lazy").setup({
-- Colorscheme -- Colorscheme
{ "vague-theme/vague.nvim" }, { "blazkowolf/gruber-darker.nvim" },
-- Background trasparency -- Background trasparency
{ "xiyaowong/transparent.nvim" }, { "xiyaowong/transparent.nvim" },
-- Treesitter
{ "nvim-treesitter/nvim-treesitter" },
-- Fuzzy finder -- Fuzzy finder
{ "echasnovski/mini.pick", opts = {} }, { "echasnovski/mini.pick", opts = {} },
@@ -188,20 +188,17 @@ require("lazy").setup({
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
"nvim-tree/nvim-web-devicons", "nvim-tree/nvim-web-devicons",
}, },
lazy = false, -- neo-tree will lazily load itself lazy = false,
opts = { opts = {
window = { window = {
width = 32 width = 32
} }
} }
}, }
-- Dim inactive windows
{ "levouh/tint.nvim", opts = {} }
}) })
-- Colorscheme -- Colorscheme
cmd.colorscheme("vague") cmd.colorscheme("gruber-darker")
-- Plugin keymaps -- Plugin keymaps
map("n", "<leader>f", ":Pick files<CR>") map("n", "<leader>f", ":Pick files<CR>")