mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 10:00:27 +01:00
Some tweaking
This commit is contained in:
@@ -21,7 +21,17 @@ vim.opt.rtp:prepend(lazypath)
|
|||||||
vim.g.mapleader = ","
|
vim.g.mapleader = ","
|
||||||
vim.g.maplocalleader = ","
|
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
|
-- Setup lazy.nvim
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
@@ -31,7 +41,7 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
-- Configure any other settings here. See the documentation for more details.
|
-- Configure any other settings here. See the documentation for more details.
|
||||||
-- colorscheme that will be used when installing plugins.
|
-- colorscheme that will be used when installing plugins.
|
||||||
install = { colorscheme = { "kanagawa" } },
|
install = { colorscheme = { "kanagawa-dragon" } },
|
||||||
-- automatically check for plugin updates
|
-- automatically check for plugin updates
|
||||||
checker = { enabled = true },
|
checker = { enabled = true },
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
return {
|
return {
|
||||||
|
|
||||||
'folke/tokyonight.nvim',
|
'folke/tokyonight.nvim',
|
||||||
|
|
||||||
'rebelot/kanagawa.nvim',
|
'rebelot/kanagawa.nvim',
|
||||||
|
'Shatur/neovim-ayu',
|
||||||
'Shatur/neovim-ayu',
|
config = function()
|
||||||
|
-- load the colorscheme
|
||||||
|
vim.cmd([[colorscheme kanagawa-dragon]])
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user