From 6e22df710bc55b0df400d0030037f9f04f141749 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sat, 17 Jun 2023 13:02:04 -0400 Subject: [PATCH] defaults --- .../modules/neovim/config/lazyvim/lua/config/keymaps.lua | 6 ++---- .../modules/neovim/config/lazyvim/lua/config/options.lua | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/config/keymaps.lua b/homeConfig/modules/neovim/config/lazyvim/lua/config/keymaps.lua index 8b13dd7..fd25b1d 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/config/keymaps.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/config/keymaps.lua @@ -2,7 +2,5 @@ -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Add any additional keymaps here -vim.keymap.set("n", "", "zz", { silent = true }) -vim.keymap.set("n", "", "zz", { silent = true }) -vim.keymap.set("n", "", "w", { silent = true }) -vim.keymap.set("n", "", "b", { silent = true }) +vim.keymap.set("n", "", "zz", { silent = true }) +vim.keymap.set("n", "", "zz", { silent = true }) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua b/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua index 84a1598..156b79e 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua @@ -10,8 +10,6 @@ vim.opt.smartindent = true vim.cmd([[ autocmd FileType python setlocal tabstop=4 shiftwidth=4 softtabstop=4 - autocmd FileType haskell setlocal tabstop=4 shiftwidth=4 softtabstop=4 - autocmd FileType purescript setlocal tabstop=4 shiftwidth=4 softtabstop=4 ]]) vim.opt.ignorecase = true