Compare commits
4 commits
d7c43ebf4c
...
29f702a0f3
| Author | SHA1 | Date | |
|---|---|---|---|
| 29f702a0f3 | |||
| 84ce078aec | |||
| f5389e6367 | |||
| e8b2978247 |
1 changed files with 5 additions and 10 deletions
15
init.lua
15
init.lua
|
|
@ -12,7 +12,7 @@ local opt = vim.opt
|
||||||
local workman = false
|
local workman = false
|
||||||
|
|
||||||
-- Set font
|
-- Set font
|
||||||
o.guifont = 'IosevkaTermSlab Nerd Font,IosevkaTerm Nerd Font,Iosevka Term Slab,Iosevka:h10:#e-subpixelantialias'
|
o.guifont = 'IosevkaTermSlab Nerd Font:h11:#e-subpixelantialias'
|
||||||
g.neovide_floating_z_height = 1
|
g.neovide_floating_z_height = 1
|
||||||
g.neovide_confirm_quit = true -- Confirm closing neovide window when changes are unsaved
|
g.neovide_confirm_quit = true -- Confirm closing neovide window when changes are unsaved
|
||||||
g.neovide_cursor_smooth_blink = true
|
g.neovide_cursor_smooth_blink = true
|
||||||
|
|
@ -370,10 +370,6 @@ require('lazy').setup({
|
||||||
end},
|
end},
|
||||||
'direnv/direnv.vim',
|
'direnv/direnv.vim',
|
||||||
'jbyuki/instant.nvim',
|
'jbyuki/instant.nvim',
|
||||||
{'mizlan/iswap.nvim', config = function()
|
|
||||||
require'iswap'.setup {}
|
|
||||||
vim.keymap.set('', '<Leader>s', '<Cmd>ISwapWith<CR>', { desc = 'Swap' })
|
|
||||||
end},
|
|
||||||
{'windwp/nvim-projectconfig', opts = {
|
{'windwp/nvim-projectconfig', opts = {
|
||||||
-- Load project configuration when changing directory
|
-- Load project configuration when changing directory
|
||||||
autocmd = true,
|
autocmd = true,
|
||||||
|
|
@ -1018,7 +1014,7 @@ require('lazy').setup({
|
||||||
picker = 'telescope',
|
picker = 'telescope',
|
||||||
-- Allow using :Octo without arguments
|
-- Allow using :Octo without arguments
|
||||||
enable_builtin = true,
|
enable_builtin = true,
|
||||||
}}
|
}},
|
||||||
{'stevearc/overseer.nvim', dependencies = {'folke/which-key.nvim'}, opts = {
|
{'stevearc/overseer.nvim', dependencies = {'folke/which-key.nvim'}, opts = {
|
||||||
task_list = {
|
task_list = {
|
||||||
bindings = {
|
bindings = {
|
||||||
|
|
@ -1166,13 +1162,12 @@ require('lazy').setup({
|
||||||
require'telescope'.load_extension('undo')
|
require'telescope'.load_extension('undo')
|
||||||
end},
|
end},
|
||||||
{'nvim-neotest/neotest', dependencies = {
|
{'nvim-neotest/neotest', dependencies = {
|
||||||
'nvim-neotest/neotest-vim-test',
|
--'nvim-neotest/neotest-vim-test',
|
||||||
'rouge8/neotest-rust',
|
|
||||||
}, config = function()
|
}, config = function()
|
||||||
require'neotest'.setup {
|
require'neotest'.setup {
|
||||||
adapters = {
|
adapters = {
|
||||||
require'neotest-vim-test' { allow_file_types = {'java'} },
|
--require'neotest-vim-test' { allow_file_types = {'java'} },
|
||||||
require'neotest-rust' {},
|
require'rustaceanvim.neotest'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
require'which-key'.register {
|
require'which-key'.register {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue