hell n back
This commit is contained in:
parent
3ee6761b45
commit
cac7203033
45 changed files with 2988 additions and 177 deletions
83
modules/nvim/init.lua
Normal file
83
modules/nvim/init.lua
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
local o = vim.opt
|
||||
local g = vim.g
|
||||
|
||||
-- Autocmds
|
||||
vim.cmd [[
|
||||
augroup CursorLine
|
||||
au!
|
||||
au VimEnter * setlocal cursorline
|
||||
au WinEnter * setlocal cursorline
|
||||
au BufWinEnter * setlocal cursorline
|
||||
au WinLeave * setlocal nocursorline
|
||||
augroup END
|
||||
|
||||
autocmd FileType nix setlocal shiftwidth=4
|
||||
]]
|
||||
|
||||
-- Keybinds
|
||||
local map = vim.api.nvim_set_keymap
|
||||
local opts = { silent = true, noremap = true }
|
||||
|
||||
map("n", "<C-h>", "<C-w>h", opts)
|
||||
map("n", "<C-j>", "<C-w>j", opts)
|
||||
map("n", "<C-k>", "<C-w>k", opts)
|
||||
map("n", "<C-l>", "<C-w>l", opts)
|
||||
map('n', '<C-n>', ':Telescope live_grep <CR>', opts)
|
||||
map('n', '<C-f>', ':Telescope find_files <CR>', opts)
|
||||
map('n', 'j', 'gj', opts)
|
||||
map('n', 'k', 'gk', opts)
|
||||
map('n', ';', ':', { noremap = true } )
|
||||
|
||||
g.mapleader = ' '
|
||||
|
||||
-- Performance
|
||||
o.lazyredraw = true;
|
||||
o.shell = "zsh"
|
||||
o.shadafile = "NONE"
|
||||
|
||||
-- Colors
|
||||
o.termguicolors = true
|
||||
|
||||
-- Undo files
|
||||
o.undofile = true
|
||||
|
||||
-- Indentation
|
||||
o.smartindent = true
|
||||
o.tabstop = 4
|
||||
o.shiftwidth = 4
|
||||
o.shiftround = true
|
||||
o.expandtab = true
|
||||
o.scrolloff = 3
|
||||
|
||||
-- Set clipboard to use system clipboard
|
||||
o.clipboard = "unnamedplus"
|
||||
|
||||
-- Use mouse
|
||||
o.mouse = "a"
|
||||
|
||||
-- Nicer UI settings
|
||||
o.cursorline = true
|
||||
o.relativenumber = true
|
||||
o.number = true
|
||||
|
||||
-- Get rid of annoying viminfo file
|
||||
o.viminfo = ""
|
||||
o.viminfofile = "NONE"
|
||||
|
||||
-- Miscellaneous quality of life
|
||||
o.ignorecase = true
|
||||
o.ttimeoutlen = 5
|
||||
o.hidden = true
|
||||
o.shortmess = "atI"
|
||||
o.wrap = false
|
||||
o.backup = false
|
||||
o.writebackup = false
|
||||
o.errorbells = false
|
||||
o.swapfile = false
|
||||
o.showmode = false
|
||||
o.laststatus = 3
|
||||
o.pumheight = 6
|
||||
o.splitright = true
|
||||
o.splitbelow = true
|
||||
o.completeopt = "menuone,noselect"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue