nvim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit eb56ee80daacaa2ce7f1842d0e775a39b8949f03
parent edd15e67b8474129c8c6f67dfd6d883d7b0104fa
Author: AndrewLockVI <andrewlaack1@gmail.com>
Date:   Mon,  6 Jan 2025 23:45:06 -0600

Finished setting up neovim

Diffstat:
Acustom_timer.txt | 2++
Mlua/core/keymaps.lua | 4++--
Mlua/core/plugins.lua | 1-
3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/custom_timer.txt b/custom_timer.txt @@ -0,0 +1 @@ +3600+ \ No newline at end of file diff --git a/lua/core/keymaps.lua b/lua/core/keymaps.lua @@ -135,8 +135,8 @@ vim.cmd("colorscheme cyberdream") vim.api.nvim_set_hl(0, "Normal", { bg = "#000000" }) -- Ensure the editor background remains black vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#000000" }) -- Floating windows background remains black vim.api.nvim_set_hl(0, "NormalNC", { bg = "#000000", fg = "#ffffff" }) -- Set background to black and text to white - - +vim.api.nvim_set_hl(0, 'SignColumn', { bg = '#000000' }) +vim.opt.ruler = false vim.o.laststatus = 0 ---- remap new window direction diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua @@ -26,7 +26,6 @@ require("luasnip").config.set_config({ -- Setting LuaSnip config -- Enable autotriggered snippets enable_autosnippets = true, }) - -- tex compile features use("lervag/vimtex")