Merge pull request #3 from peturparkur/peter

toggleterm and indent highlight
pull/1705/head
peturparkur 1 year ago committed by GitHub
commit 1b48ea8bfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -278,8 +278,6 @@ require('lazy').setup({
require 'kickstart.plugins.telescope',
require 'kickstart.plugins.lsp',
require 'kickstart.plugins.autopairs',
{ -- Autoformat
'stevearc/conform.nvim',
lazy = false,
@ -336,9 +334,9 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.indent_line',
-- require 'kickstart.plugins.lint',
-- require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.neo-tree',
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
@ -347,7 +345,7 @@ require('lazy').setup({
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
}, {
ui = {
-- If you are using a Nerd Font: set icons to an empty table which will use the

@ -0,0 +1,11 @@
return {
'akinsho/toggleterm.nvim',
version = '*',
opts = {},
config = function(_, opts)
require('toggleterm').setup {
open_mapping = [[<c-\>]],
direction = 'float',
}
end,
}

@ -238,7 +238,7 @@ return {
-- plugins = {
-- pycodestyle = {
-- ignore = {},
-- maxLineLength = 120,
-- maxLineLength = 120,
-- },
-- },
-- }
@ -259,6 +259,7 @@ return {
-- But for many setups, the LSP (`tsserver`) will work just fine
-- tsserver = {},
--
nixd = {},
['nil_ls'] = {
alias = 'nil',
},

Loading…
Cancel
Save