Compare commits

..

4 Commits

Author SHA1 Message Date
venus
be3ec8dc84 added plugin for better colortheme developement 2026-01-20 13:31:29 -06:00
venus
878bd5748e added more robust commands for compiling in terminal 2026-01-14 07:37:23 -06:00
venus
c08b9f3d01 added plugin for mod of sudo files 2026-01-12 07:47:58 -06:00
venus
764504185d tried to add nerd font and sql plugin 2026-01-12 07:42:51 -06:00
3 changed files with 16 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true
vim.g.netrw_liststyle = 3
@@ -67,6 +67,12 @@ vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagn
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
-- run clear and make in open terminal
vim.keymap.set('n','<leader>r','<cmd>TermExec cmd="clear && make"<CR>', { desc = '[r]un make in terminal' })
vim.keymap.set('n','<leader>n', '<cmd>ToggleTerm direction=vertical name=compile size=70<CR>', { desc = 'open a [n]ew terminal' })
vim.keymap.set('n','<leader>t', '<cmd>ToggleTerm<CR>', {desc = '[T]oggle all terminals'})
-- TIP: Disable arrow keys in normal mode
vim.keymap.set('n', '<left>', '<cmd>echo "Use h to move!!"<CR>')
vim.keymap.set('n', '<right>', '<cmd>echo "Use l to move!!"<CR>')

View File

@@ -11,4 +11,7 @@ return {
'nvim-tree/nvim-web-devicons', -- nerdfont!
'nvim-lualine/lualine.nvim', -- lualine
'TamaMcGlinn/vim-termhere', --simple terminal QOL
"rktjmp/lush.nvim", -- better theme editing
{ "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart
{'akinsho/toggleterm.nvim', version = "*", config = true} -- terminal toggling and commands
}

6
lua/plugins/sql.lua Normal file
View File

@@ -0,0 +1,6 @@
return {
'xemptuous/sqlua.nvim',
lazy = true,
cmd = 'SQLua',
config = function() require('sqlua').setup() end
}