Lastest changes
This commit is contained in:
parent
8693bde880
commit
2870f89f1e
8
init.lua
8
init.lua
|
@ -198,8 +198,8 @@ require('lazy').setup({
|
|||
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
|
||||
-- These are some example plugins that I've included in the kickstart repository.
|
||||
-- Uncomment any of the lines below to enable them.
|
||||
-- require 'kickstart.plugins.autoformat',
|
||||
-- require 'kickstart.plugins.debug',
|
||||
require 'kickstart.plugins.autoformat',
|
||||
require 'kickstart.plugins.debug',
|
||||
|
||||
-- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
||||
-- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping
|
||||
|
@ -451,7 +451,7 @@ local servers = {
|
|||
clangd = {},
|
||||
gopls = {},
|
||||
-- solargraph = {},
|
||||
ruby_ls = {},
|
||||
-- ruby_ls = {},
|
||||
sqlls = {},
|
||||
angularls = {},
|
||||
bashls = {},
|
||||
|
@ -548,7 +548,7 @@ cmp.setup {
|
|||
},
|
||||
}
|
||||
|
||||
vim.cmd [[autocmd BufWritePre * lua vim.lsp.buf.format()]]
|
||||
-- vim.cmd [[autocmd BufWritePre * lua vim.lsp.buf.format()]]
|
||||
|
||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||
-- vim: ts=2 sts=2 sw=2 et
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
return {
|
||||
'easymotion/vim-easymotion'
|
||||
'easymotion/vim-easymotion',
|
||||
config = function()
|
||||
vim.keymap.set('n', 'f', '<Plug>(easymotion-f)', { desc = '[f]ind next character' })
|
||||
vim.keymap.set('n', 'F', '<Plug>(easymotion-F)', { desc = '[F]ind previous character' })
|
||||
vim.keymap.set('n', 't', '<Plug>(easymotion-t)', { desc = '[t]ill next character' })
|
||||
vim.keymap.set('n', 'T', '<Plug>(easymotion-T)', { desc = '[T]ill previous character' })
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
return {
|
||||
'mbledkowski/neuleetcode.vim',
|
||||
config = function()
|
||||
vim.g.leetcode_browser = 'chrome'
|
||||
vim.keymap.set('n', '<leader>ll', ':LeetCodeList<CR>', { desc = '[L]eetCode [L]ist' })
|
||||
vim.keymap.set('n', '<leader>lt', ':LeetCodeTest<CR>', { desc = '[L]eetCode [T]est' })
|
||||
vim.keymap.set('n', '<leader>ls', ':LeetCodeSubmit<CR>', { desc = '[L]eetCode [S]ubmit' })
|
||||
vim.keymap.set('n', '<leader>li', ':LeetCodeSignIn<CR>', { desc = '[L]eetCode Sign [I]n' })
|
||||
end,
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
return {
|
||||
"iamcco/markdown-preview.nvim",
|
||||
run = function() vim.fn["mkdp#util#install"]() end,
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
return {
|
||||
'mfussenegger/nvim-dap'
|
||||
}
|
Loading…
Reference in New Issue