initial dotfiles
This commit is contained in:
commit
8a2e735875
7 changed files with 588 additions and 0 deletions
13
.config/nvim/init.lua
Normal file
13
.config/nvim/init.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
-- Basic settings
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.mouse = 'a'
|
||||
vim.opt.ignorecase = true
|
||||
vim.opt.smartcase = true
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
-- Basic keymaps
|
||||
vim.g.mapleader = ' '
|
||||
Loading…
Add table
Add a link
Reference in a new issue