diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/init.lua | 2 | ||||
-rw-r--r-- | lua/user/lazy.lua | 3 | ||||
-rw-r--r-- | lua/user/map.lua | 2 |
3 files changed, 1 insertions, 6 deletions
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 '>+1<CR>gv=gv", { desc = "Move selected text up" }) |