feat: ✨ add new dotfiles
This commit is contained in:
parent
7a5975bb81
commit
e8bfb35161
34 changed files with 1474 additions and 0 deletions
20
.config/nvim/lua/options.lua
Normal file
20
.config/nvim/lua/options.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
vim.opt.clipboard = "unnamedplus"
|
||||
vim.opt.mouse = 'a'
|
||||
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = false
|
||||
vim.opt.cursorline = true
|
||||
|
||||
vim.opt.spelllang = "en_gb"
|
||||
vim.opt.spell = true
|
||||
|
||||
vim.lsp.inlay_hint.enable()
|
||||
|
||||
vim.g.loaded_netrwPlugin = 0
|
||||
|
||||
vim.opt.termguicolors = true
|
Loading…
Add table
Add a link
Reference in a new issue