This commit is contained in:
h
2026-06-14 02:49:06 -04:00
parent f44e1cdc22
commit 4cd1806682
9 changed files with 998 additions and 20 deletions
+7 -3
View File
@@ -4,6 +4,8 @@ local map = vim.api.nvim_set_keymap
o.expandtab = true
o.tabstop = 4
o.shiftwidth = 0
o.modeline = true
o.modelines = 5
o.viminfo = ''
vim.g.base16colorspace = 256
vim.g.vimtex_view_method = "zathura"
@@ -26,16 +28,18 @@ vim.cmd [[
o.spelllang = "en_us"
map('i', '<C-L>', '<c-g>u<Esc>[s1z=`]a<c-g>u', { noremap = true })
-- vim.cmd('colorscheme theme')
-- vim.cmd('colorscheme tinted-theme')
vim.cmd('colorscheme theme-nvim')
-- vim.cmd('colorscheme theme-mininvim')
vim.g.airline_theme = 'theme'
vim.cmd("AirlineTheme theme")
-- stupid fix for stupid problems i guess
vim.g["airline#extensions#whitespace#enabled"] = false
local color = require('base16-colorscheme').colors.base02
vim.api.nvim_set_hl(0, 'LineNr', { fg = color, bg = "none" })
map('n', '<Leader>s', ':%s//g<Left><Left>', {})
map('n', '<Leader>e', ':make!<CR>', { noremap = true })