1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 11:10:26 +01:00

Some tweaking

This commit is contained in:
2026-01-17 15:32:45 +01:00
parent 300b177d0d
commit 42a0af7cb3
2 changed files with 17 additions and 6 deletions

View File

@@ -21,7 +21,17 @@ vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = ","
vim.g.maplocalleader = ","
vim.wo.number = true
vim.opt.number = true
vim.opt.relativenumber = false -- relative line numbers
vim.opt.tabstop = 4 -- tab width
vim.opt.shiftwidth = 4 -- indent width
vim.opt.expandtab = true -- spaces instead of tabs
vim.opt.smartindent = true -- smart indentation
vim.opt.termguicolors = true -- true color support
vim.opt.clipboard = "unnamedplus" -- system clipboard
vim.cmd.colorscheme 'kanagawa-dragon'
vim.opt.smoothscroll = true
-- Setup lazy.nvim
require("lazy").setup({
@@ -31,7 +41,7 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "kanagawa" } },
install = { colorscheme = { "kanagawa-dragon" } },
-- automatically check for plugin updates
checker = { enabled = true },
})

View File

@@ -1,8 +1,9 @@
return {
'folke/tokyonight.nvim',
'rebelot/kanagawa.nvim',
'Shatur/neovim-ayu',
'Shatur/neovim-ayu',
config = function()
-- load the colorscheme
vim.cmd([[colorscheme kanagawa-dragon]])
end,
}