From 1d58568902d269ad74a7047a9227ec857c6e7937 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Sun, 26 May 2024 13:12:09 +0200 Subject: remove colorscheme add keybind for viewing buffers with telescope --- lua/user/init.lua | 2 -- lua/user/lazy.lua | 3 --- lua/user/map.lua | 2 +- 3 files changed, 1 insertion(+), 6 deletions(-) (limited to 'lua') diff --git a/lua/user/init.lua b/lua/user/init.lua index 2b94d59..5892f74 100644 --- a/lua/user/init.lua +++ b/lua/user/init.lua @@ -27,5 +27,3 @@ autocmd({ "BufWritePre" }, { vim.fn.mkdir(vim.fn.fnamemodify(file, ":p:h"), "p") end, }) - -vim.cmd("colorscheme nord") diff --git a/lua/user/lazy.lua b/lua/user/lazy.lua index 8c4fc3d..8671a69 100644 --- a/lua/user/lazy.lua +++ b/lua/user/lazy.lua @@ -52,9 +52,6 @@ require("lazy").setup({ -- integration with tmux keybinds "christoomey/vim-tmux-navigator", - -- nord color theme - "shaunsingh/nord.nvim", - -- auto close brackets "m4xshen/autoclose.nvim", diff --git a/lua/user/map.lua b/lua/user/map.lua index 7bcee2f..ebcd2ca 100644 --- a/lua/user/map.lua +++ b/lua/user/map.lua @@ -2,7 +2,7 @@ local map = vim.keymap.set -- Leader vim.g.mapleader = " " -vim.g.maplocalleader = ";" +vim.g.maplocalleader = "," -- Move text easilly map("v", "J", ":m '>+1gv=gv", { desc = "Move selected text up" }) -- cgit v1.2.3