update
This commit is contained in:
parent
34bc3b9c8f
commit
e7b383cc02
18
init.lua
18
init.lua
|
|
@ -1067,7 +1067,11 @@ require('lazy').setup({
|
|||
-- Optional dependencies
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function() -- this is the function that runs, after loading
|
||||
require('oil').setup()
|
||||
require('oil').setup {
|
||||
view_options = {
|
||||
show_hidden = true,
|
||||
},
|
||||
}
|
||||
|
||||
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
|
||||
end,
|
||||
|
|
@ -1214,7 +1218,15 @@ require('lazy').setup({
|
|||
event = 'VeryLazy',
|
||||
build = 'make',
|
||||
opts = {
|
||||
-- add any opts here
|
||||
-- provider = 'deepseek',
|
||||
-- vendors = {
|
||||
-- deepseek = {
|
||||
-- __inherited_from = 'openai',
|
||||
-- api_key_name = 'DEEPSEEK_API_KEY',
|
||||
-- endpoint = 'https://api.deepseek.com',
|
||||
-- model = 'deepseek-coder',
|
||||
-- },
|
||||
-- }, -- add any opts here
|
||||
},
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons', -- or echasnovski/mini.icons
|
||||
|
|
@ -1421,7 +1433,7 @@ require('lazy').setup({
|
|||
wrap = false,
|
||||
signcolumn = 'yes',
|
||||
statuscolumn = ' ',
|
||||
conceallevel = 3,
|
||||
conceallevel = 4,
|
||||
},
|
||||
}
|
||||
end,
|
||||
|
|
|
|||
Loading…
Reference in New Issue