save
This commit is contained in:
@@ -2,7 +2,9 @@ return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
requires = { "kyazdani42/nvim-web-devicons" },
|
||||
dependencies = {
|
||||
"stevearc/dressing.nvim",
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
"rktjmp/lush.nvim",
|
||||
"zaldih/themery.nvim",
|
||||
"FrenzyExists/aquarium-vim",
|
||||
"vague2k/vague.nvim",
|
||||
@@ -11,6 +13,7 @@ return {
|
||||
"shaunsingh/nord.nvim",
|
||||
"rose-pine/neovim",
|
||||
"folke/tokyonight.nvim",
|
||||
"uloco/bluloco.nvim"
|
||||
},
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
@@ -36,6 +39,11 @@ return {
|
||||
"*",
|
||||
css = { rgb_fn = true },
|
||||
})
|
||||
require("dressing").setup({
|
||||
select = {
|
||||
backend = { "nui", "telescope", "builtin" }
|
||||
}
|
||||
})
|
||||
require("themery").setup({
|
||||
themes = {
|
||||
"aquarium",
|
||||
@@ -47,6 +55,7 @@ return {
|
||||
"nord",
|
||||
"rose-pine",
|
||||
"tokyonight",
|
||||
"bluloco-dark",
|
||||
},
|
||||
livePreview = true,
|
||||
})
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
return {
|
||||
"stevearc/conform.nvim",
|
||||
dependencies = {
|
||||
"tpope/vim-sleuth"
|
||||
},
|
||||
dependencies = {
|
||||
"tpope/vim-sleuth",
|
||||
},
|
||||
event = { "BufWritePre" },
|
||||
cmd = { "ConformInfo" },
|
||||
keys = {
|
||||
|
||||
@@ -8,6 +8,9 @@ vim.keymap.set("n", "<leader>m", ":make<CR>", { noremap = true, silent = false,
|
||||
vim.keymap.set("n", "<leader>t", ":below term<CR>i", { noremap = true, silent = true, desc = "Open Terminal Split" })
|
||||
vim.keymap.set("t", "<Esc><Esc>", "<C-\\><C-m>", { noremap = true, silent = true, desc = "Go from Terminal mode to Normal mode" })
|
||||
|
||||
-- LSP
|
||||
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, { noremap = true, silent = true, desc = "Go to definition" })
|
||||
|
||||
-- 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>')
|
||||
|
||||
@@ -32,13 +32,3 @@ vim.opt.colorcolumn = "127"
|
||||
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
|
||||
vim.api.nvim_set_hl(0, 'TabLine', { fg = 'NONE', bg = 'NONE', underline = false })
|
||||
vim.api.nvim_set_hl(0, 'TabLineSel', { fg = 'NONE', bg = 'NONE', underline = false })
|
||||
vim.api.nvim_set_hl(0, 'TabLineFill', { fg = 'NONE', bg = 'NONE' })
|
||||
vim.cmd [[
|
||||
highlight TabLine guibg=NONE guifg=NONE gui=NONE
|
||||
highlight TabLineSel guibg=NONE guifg=NONE gui=NONE
|
||||
highlight TabLineFill guibg=NONE guifg=NONE gui=NONE
|
||||
]]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user