Completed BOOTSTRAP; Updated tmux, nvim, & zsh

This commit is contained in:
mattr
2024-10-03 16:55:56 -05:00
parent 922fdb0cba
commit be7791c641
5 changed files with 91 additions and 51 deletions

View File

@@ -21,6 +21,8 @@ end)
-- Enable break indent
vim.opt.breakindent = true
-- Enable word break instead of character break
vim.opt.linebreak = true
-- Save undo history
vim.opt.undofile = true
@@ -499,6 +501,7 @@ require('lazy').setup({
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
},
config = function()
-- See `:help cmp`
local cmp = require 'cmp'
@@ -510,6 +513,7 @@ require('lazy').setup({
luasnip.lsp_expand(args.body)
end,
window = {
completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered({
winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,CursorLine:PmenuSel,Search:None",
}),