update pre nchad
This commit is contained in:
parent
0ae1cf0a07
commit
e23eec9c6e
8 changed files with 219 additions and 33 deletions
|
|
@ -3,13 +3,13 @@ return {
|
|||
'lervag/vimtex',
|
||||
'sirver/ultisnips',
|
||||
'KeitaNakamura/tex-conceal.vim',
|
||||
config = function()
|
||||
vim.g.UltiSnipsExpandTrigger = '<tab>'
|
||||
vim.g.UltiSnipsJumpForwardTrigger = '<tab>'
|
||||
vim.g.UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
||||
vim.g.tex_flavor = 'latex'
|
||||
vim.g.vimtex_view_method = 'zathura'
|
||||
vim.g.vimtex_quickfix_mode = 0
|
||||
vim.g.tex_conceal = 'abdmg',
|
||||
end
|
||||
-- config = function()
|
||||
-- vim.g.UltiSnipsExpandTrigger = '<tab>'
|
||||
-- vim.g.UltiSnipsJumpForwardTrigger = '<tab>'
|
||||
-- vim.g.UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
||||
-- vim.g.tex_flavor = 'latex'
|
||||
-- vim.g.vimtex_view_method = 'zathura'
|
||||
-- vim.g.vimtex_quickfix_mode = 0
|
||||
-- vim.g.tex_conceal = 'abdmg',
|
||||
-- end
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,14 @@ return {
|
|||
vim.keymap.set('n', 's', function()
|
||||
local current_window = vim.fn.win_getid()
|
||||
require('leap').leap { target_windows = { current_window } }
|
||||
require('leap').init_highlight(true)
|
||||
end)
|
||||
|
||||
require('leap').opts = {
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
end
|
||||
}
|
||||
|
|
|
|||
3
lua/custom/plugins/nabla.lua
Normal file
3
lua/custom/plugins/nabla.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
"jbyuki/nabla.nvim"
|
||||
}
|
||||
18
lua/custom/plugins/neorg.lua
Normal file
18
lua/custom/plugins/neorg.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
"nvim-neorg/neorg",
|
||||
build = ":Neorg sync-parsers",
|
||||
opts = {
|
||||
load = {
|
||||
["core.defaults"] = {}, -- Loads default behaviour
|
||||
["core.norg.concealer"] = {}, -- Adds pretty icons to your documents
|
||||
["core.norg.dirman"] = { -- Manages Neorg workspaces
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = "~/notes",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
dependencies = { { "nvim-lua/plenary.nvim" } },
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
return {
|
||||
'nvim-orgmode/orgmode',
|
||||
ft = { 'org' },
|
||||
config = function()
|
||||
require('orgmode').setup {}
|
||||
end
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
return {
|
||||
|
||||
{
|
||||
'folke/tokyonight.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'tokyonight'
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
@ -25,17 +25,27 @@ return {
|
|||
invert_signs = false,
|
||||
invert_tabline = false,
|
||||
invert_intend_guides = false,
|
||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
inverse = false, -- invert background for search, diffs, statuslines and errors
|
||||
contrast = "hard", -- can be "hard", "soft" or empty string
|
||||
palette_overrides = {},
|
||||
palette_overrides = {
|
||||
|
||||
},
|
||||
overrides = {
|
||||
SignColumn = { bg = "#1d2021" }
|
||||
SignColumn = { bg = "#1d2021" },
|
||||
LspDiagnosticsSignError = { fg = "#cc241d" },
|
||||
LspDiagnosticsSignWarning = { fg = "#d79921" },
|
||||
LspDiagnosticsSignInformation = { fg = "#458588" },
|
||||
LspDiagnosticsSignHint = { fg = "#b16286" },
|
||||
TSAnnotation = { fg = "#A12568" },
|
||||
javaAnnotation = { fg = "#A12568" },
|
||||
},
|
||||
dim_inactive = false,
|
||||
transparent_mode = false,
|
||||
})
|
||||
vim.o.background = "dark"
|
||||
vim.cmd.colorscheme 'gruvbox'
|
||||
|
||||
-- vim.cmd [[highlight Search guifg=#292e42 guibg=#bb9af7]]
|
||||
-- vim.o.background = "dark"
|
||||
-- vim.cmd.colorscheme 'gruvbox'
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue