Updated files

This commit is contained in:
Ethan Smith-Coss 2024-01-27 12:44:08 +00:00
parent 1eae93bb8b
commit 6c8b427143
Signed by: TheOnePath
GPG Key ID: 4E7D436CE1A0BAF1
2 changed files with 6 additions and 5 deletions

View File

@ -16,4 +16,4 @@ ls.config.set_config{
--Autosnippets: --Autosnippets:
enable_autosnippets = true, enable_autosnippets = true,
} }
require("luasnip/loaders/from_vscode").load() require("luasnip/loaders/from_vscode").lazy_load()

View File

@ -1,12 +1,10 @@
-- Plugins for Nevim via Packer require('plugin')
require('plugins')
-- Instantiate the gruvbox theme via native vimscript -- Instantiate the gruvbox theme via native vimscript
-- Note: this always comes before anything, or the theme breaks -- Note: this always comes before anything, or the theme breaks
vim.cmd([[ vim.cmd([[
set termguicolors set termguicolors
let g:gruvbox_italic=1 let g:gruvbox_italic=1
colorscheme gruvbox
set cursorline set cursorline
set cursorcolumn set cursorcolumn
set number set number
@ -14,10 +12,13 @@ vim.cmd([[
set textwidth=120 sw=4 ts=4 et colorcolumn=120 set textwidth=120 sw=4 ts=4 et colorcolumn=120
highlight ColorColumn ctermbg=0 highlight ColorColumn ctermbg=0
set splitbelow splitright set splitbelow splitright
autocmd BufRead,BufNewFile *.bottle set filetype=bottle
AirlineTheme catppuccin
]]) ]])
-- Custom extension presser (WIP) -- Custom extension presser (WIP)
local presser = require'presser' local presser = require'presser-ui'
presser.setup( { } ) presser.setup( { } )
-- Custom keybindings using the util `map` function -- Custom keybindings using the util `map` function