Skip to content

Commit 0ff659c

Browse files
committed
housekeeping
1 parent c4427eb commit 0ff659c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

init.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,7 @@ require('lazy').setup({
11741174

11751175
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
11761176
opts = {
1177-
ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' },
1177+
ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc', 'rust' },
11781178
-- Autoinstall languages that are not installed
11791179
auto_install = true,
11801180
highlight = {
@@ -1208,7 +1208,7 @@ require('lazy').setup({
12081208
-- require 'kickstart.plugins.indent_line',
12091209
-- require 'kickstart.plugins.lint',
12101210
-- require 'kickstart.plugins.autopairs',
1211-
require 'kickstart.plugins.neo-tree',
1211+
-- require 'kickstart.plugins.neo-tree',
12121212
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
12131213

12141214
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
@@ -1325,11 +1325,11 @@ require('lazy').setup({
13251325
['g?'] = { 'actions.show_help', mode = 'n' },
13261326
['<CR>'] = 'actions.select',
13271327
['<C-s>'] = { 'actions.select', opts = { vertical = true } },
1328-
['<C-h>'] = { 'actions.select', opts = { horizontal = true } },
1328+
-- ['<C-h>'] = { 'actions.select', opts = { horizontal = true } },
13291329
['<C-t>'] = { 'actions.select', opts = { tab = true } },
13301330
['<C-p>'] = 'actions.preview',
13311331
['<C-c>'] = { 'actions.close', mode = 'n' },
1332-
['<C-l>'] = 'actions.refresh',
1332+
-- ['<C-l>'] = 'actions.refresh',
13331333
['-'] = { 'actions.parent', mode = 'n' },
13341334
['_'] = { 'actions.open_cwd', mode = 'n' },
13351335
['`'] = { 'actions.cd', mode = 'n' },
@@ -1390,4 +1390,4 @@ vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename, {})
13901390

13911391
-- The line beneath this is called `modeline`. See `:help modeline`
13921392
-- vim: ts=2 sts=2 sw=2 et
1393-
conceallevel = 2
1393+
require 'oil'

0 commit comments

Comments
 (0)