chore: updates
This commit is contained in:
parent
b88cf78d26
commit
06e4ee6088
23 changed files with 340 additions and 2363 deletions
1
.config/nvim/lua/plugins/.jukit/.jukit_info.json
Normal file
1
.config/nvim/lua/plugins/.jukit/.jukit_info.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"terminal": "tmux"}
|
|
@ -101,6 +101,7 @@ lazy.setup({
|
|||
}
|
||||
end
|
||||
},
|
||||
|
||||
-- Rename variable pop up
|
||||
'stevearc/dressing.nvim',
|
||||
{
|
||||
|
@ -108,21 +109,25 @@ lazy.setup({
|
|||
config = function()
|
||||
require("compiler-explorer").setup({
|
||||
url = "https://godbolt.org",
|
||||
infer_lang = true, -- Try to infer possible language based on file extension.
|
||||
infer_lang = true, -- Try to infer possible language based on file extension.
|
||||
line_match = {
|
||||
highlight = true, -- highlight the matching line(s) in the other buffer.
|
||||
jump = true, -- move the cursor in the other buffer to the first matching line.
|
||||
highlight = true, -- highlight the matching line(s) in the other buffer.
|
||||
jump = true, -- move the cursor in the other buffer to the first matching line.
|
||||
},
|
||||
open_qflist = true, -- Open qflist after compilation if there are diagnostics.
|
||||
split = "split", -- How to split the window after the second compile (split/vsplit).
|
||||
compiler_flags = "", -- Default flags passed to the compiler.
|
||||
open_qflist = true, -- Open qflist after compilation if there are diagnostics.
|
||||
split = "split", -- How to split the window after the second compile (split/vsplit).
|
||||
compiler_flags = "", -- Default flags passed to the compiler.
|
||||
job_timeout_ms = 25000, -- Timeout for libuv job in milliseconds.
|
||||
languages = { -- Language specific default compiler/flags
|
||||
languages = { -- Language specific default compiler/flags
|
||||
},
|
||||
})
|
||||
end
|
||||
},
|
||||
|
||||
{
|
||||
'luk400/vim-jukit'
|
||||
},
|
||||
|
||||
{
|
||||
'windwp/nvim-autopairs',
|
||||
config = function()
|
||||
|
@ -207,12 +212,12 @@ lazy.setup({
|
|||
end
|
||||
},
|
||||
|
||||
-- {
|
||||
-- 'lervag/vimtex',
|
||||
-- config = function()
|
||||
-- require 'plugins.vimtex'
|
||||
-- end
|
||||
-- },
|
||||
{
|
||||
'lervag/vimtex',
|
||||
config = function()
|
||||
require 'plugins.vimtex'
|
||||
end
|
||||
},
|
||||
|
||||
-------------------------------------------------------------------------------------------
|
||||
-- Syntax Highlighting
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
vim.g.vimtex_view_method = 'zathura'
|
||||
|
||||
vim.g.vimtex_compiler_methor = 'latexmk'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue