added vitual chars for whitespaces.

This commit is contained in:
Gabe Venberg 2024-01-10 16:04:56 -06:00
parent c7de6a790e
commit ec4a477c3a
2 changed files with 52 additions and 28 deletions

View file

@ -35,7 +35,7 @@ opt.breakindent = true
opt.colorcolumn = "80,100,120"
--add ruler to side of screen.
opt.number = true
opt.numberwidth=3
opt.numberwidth = 3
--displays cordinates of your cursor in statusbar
opt.ruler = true
--always leave 5 cells between cursor and side of window.
@ -58,8 +58,8 @@ opt.autoindent = true
opt.smartindent = true
opt.smarttab = true
--space based tabs.
opt.softtabstop=-1 --negative value inherrits shiftwidth.
opt.expandtab=true
opt.softtabstop = -1 --negative value inherrits shiftwidth.
opt.expandtab = true
--highlight search results as you type.
opt.hlsearch = true
opt.incsearch = true
@ -72,9 +72,20 @@ opt.fillchars = 'stl:=,stlnc: ,vert:|,fold:-'
opt.foldcolumn = 'auto:4'
opt.foldenable = true
opt.foldignore = ''
--display whitespace as other chars:
opt.list = true
opt.listchars = {
tab = '>-',
eol = '',
nbsp='',
trail='',
extends = '',
precedes = ''
}
opt.showbreak = ''
--sets colorscheme. to get a list of avalible options, do colorscheme <Space> <C-d>
vim.opt.background="dark"
vim.opt.background = "dark"
-- vim.cmd 'colorscheme moonfly'
-- vim.cmd 'colorscheme nightfly'
-- vim.cmd 'colorscheme nordic'
@ -103,7 +114,7 @@ end
--keyboard mappings
local function optsWithDesc(desc)
return {silent=true, desc=desc}
return { silent = true, desc = desc }
end
--toggle spell check
map('n', '<leader>cs', ':setlocal spell!<CR>', optsWithDesc("toggle spell check"))
@ -125,8 +136,8 @@ map('n', '<leader>t', ':NvimTreeToggle<CR>', optsWithDesc("toggle file browser")
--telescope stuff
-- setup leader-f prefix in whitch-key
wk.register {
["<leader>f"]={
name="+telescope"
["<leader>f"] = {
name = "+telescope"
}
}
map('n', '<leader>ff', ':Telescope find_files<CR>', optsWithDesc("find files"))
@ -152,7 +163,9 @@ map('n', '<leader>v', ":lua Toggle_venn()", optsWithDesc("toggle venn.nvim"))
map('n', '<leader>j', ':TSJToggle<CR>', optsWithDesc("treesitter split/join"))
-- a dedicated floating scratch terminal, seperate from the normal toggleterm terminals.
local Terminal = require('toggleterm.terminal').Terminal
Floatingterm = Terminal:new({ hidden = true,
direction="float"})
Floatingterm = Terminal:new({
hidden = true,
direction = "float"
})
vim.api.nvim_set_keymap("n", "<leader>s", ':lua Floatingterm:toggle()<CR>', optsWithDesc("open scratch terminal"))

View file

@ -68,6 +68,17 @@ opt.fillchars = 'stl:=,stlnc: ,vert:|,fold:-'
opt.foldcolumn = 'auto:4'
opt.foldenable = true
opt.foldignore = ''
--display whitespace as other chars:
opt.list = true
opt.listchars = {
tab = '>-',
eol = '',
nbsp='',
trail='',
extends = '',
precedes = ''
}
opt.showbreak = ''
--keyboard mappings
local function optsWithDesc(desc)