Compare commits

..

3 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
3 changed files with 10 additions and 7 deletions

View File

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

View File

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

View File

@@ -12,6 +12,9 @@ opt.relativenumber = true
-- Block cursor
opt.guicursor = ""
-- Hightlight cursor line
opt.cursorline = true
-- File options
opt.undofile = true
opt.undodir = os.getenv("HOME") .. "/.vim/nvim_undodir"
@@ -141,7 +144,7 @@ opt.rtp:prepend(lazypath)
-- Plugins
require("lazy").setup({
-- Colorscheme
{ "vague-theme/vague.nvim" },
{ "blazkowolf/gruber-darker.nvim" },
-- Background trasparency
{ "xiyaowong/transparent.nvim" },
@@ -195,7 +198,7 @@ require("lazy").setup({
})
-- Colorscheme
cmd.colorscheme("vague")
cmd.colorscheme("gruber-darker")
-- Plugin keymaps
map("n", "<leader>f", ":Pick files<CR>")