Updated files
This commit is contained in:
parent
1eae93bb8b
commit
6c8b427143
|
|
@ -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()
|
||||||
|
|
|
||||||
9
init.lua
9
init.lua
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user