68 lines
2.2 KiB
Lua
68 lines
2.2 KiB
Lua
-- River Rooks nvim config
|
|
|
|
-- [[setup]]
|
|
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
vim.g.have_nerd_font = true
|
|
|
|
-- netrw
|
|
vim.g.netrw_liststyle = 3 --tree view
|
|
vim.g.netrw_banner = 1
|
|
vim.g.netrw_winsize = 70 -- Set the width of the "drawer"
|
|
vim.g.netrw_browse_split = 4 -- Open files in previous window. This emulates the typical "drawer" behavior
|
|
vim.g.netrw_preview = 1 -- opens in vertical if no open buffer
|
|
vim.g.netrw_altv = 1 -- Create the split of the Netrw window to the left
|
|
|
|
|
|
-- [[Setting options]]
|
|
vim.o.number = true -- Make line numbers default
|
|
vim.o.relativenumber = true
|
|
vim.o.showmode = false
|
|
-- Sync clipboard between OS and Neovim.
|
|
-- Schedule the setting after `UiEnter` because it can increase startup-time.
|
|
-- Remove this option if you want your OS clipboard to remain independent.
|
|
-- See `:help 'clipboard'`
|
|
vim.schedule(function()
|
|
vim.o.clipboard = 'unnamedplus'
|
|
end)
|
|
-- Enable break indent
|
|
-- Save undo history
|
|
vim.o.undofile = true
|
|
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
|
|
vim.o.ignorecase = true
|
|
vim.o.smartcase = true
|
|
-- Keep signcolumn on by default
|
|
vim.o.signcolumn = 'yes'
|
|
-- Decrease update time
|
|
vim.o.updatetime = 250
|
|
-- Decrease mapped sequence wait time
|
|
vim.o.timeoutlen = 300
|
|
-- Configure how new splits should be opened
|
|
-- vim.o.splitright = false
|
|
-- vim.o.splitbelow = true
|
|
vim.o.list = true
|
|
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
|
-- Preview substitutions live, as you type!
|
|
vim.o.inccommand = 'split'
|
|
-- Show which line your cursor is on
|
|
vim.o.cursorline = true
|
|
-- Minimal number of screen lines to keep above and below the cursor.
|
|
vim.o.scrolloff = 25
|
|
-- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`),
|
|
-- instead raise a dialog asking if you wish to save the current file(s)
|
|
-- See `:help 'confirm'`
|
|
vim.o.confirm = true
|
|
-- [[Keybinds]]
|
|
-- See `:help vim.keymap.set()`
|
|
-- See `:help hlsearch`
|
|
|
|
-- [[ Basic Autocommands ]]
|
|
vim.api.nvim_create_autocmd('TextYankPost', {
|
|
desc = 'Highlight when yanking (copying) text',
|
|
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
|
|
callback = function()
|
|
vim.hl.on_yank()
|
|
end,
|
|
})
|
|
|