many theme changes

This commit is contained in:
Tawfeeq 2025-03-27 15:00:09 +01:00
parent 2730fd29b8
commit b9199efb56
9 changed files with 102 additions and 35 deletions

10
after/sql.lua Normal file
View File

@ -0,0 +1,10 @@
vim.api.nvim_create_autocmd('FileType', {
pattern = 'sql',
callback = function()
vim.lsp.start {
name = 'sqls',
cmd = { 'sqls', 'stdio' },
root_dir = vim.fn.getcwd(),
}
end,
})

View File

@ -91,6 +91,8 @@ I hope you enjoy your Neovim journey,
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used) -- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
P.S. You can delete this when you're done too. It's your config now! :) P.S. You can delete this when you're done too. It's your config now! :)
--]] --]]
vim.lsp.config('sqls', {})
vim.lsp.enable('sqls')
vim.g.db_ui_env_variable_url = 'postgres' vim.g.db_ui_env_variable_url = 'postgres'
vim.g.db_ui_env_variable_name = 'test' vim.g.db_ui_env_variable_name = 'test'
@ -588,20 +590,37 @@ require('lazy').setup({
{ {
-- Main LSP Configuration -- Main LSP Configuration
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
-- opts = { opts = {
-- servers = { eslint = {} }, servers = {
-- setup = { eslint = {},
-- eslint = function() -- sqls = {
-- require('lazyvim.util').lsp.on_attach(function(client) -- on_attach = function(client, bufnr)
-- if client.name == 'eslint' then -- client.supports_method('textDocument/formatting') = true
-- client.server_capabilities.documentFormattingProvider = true -- vim.api.nvim_create_autocmd('BufWritePre', {
-- elseif client.name == 'tsserver' then -- buffer = bufnr,
-- client.server_capabilities.documentFormattingProvider = false -- callback = function()
-- end -- vim.lsp.buf.format {
-- end) -- filter = function(c)
-- end, -- return c.name == 'sqls'
-- }, -- end,
-- }, -- }
-- end,
-- })
-- end,
-- },
},
-- setup = {
-- eslint = function()
-- require('lazyvim.util').lsp.on_attach(function(client)
-- if client.name == 'eslint' then
-- client.server_capabilities.documentFormattingProvider = true
-- elseif client.name == 'tsserver' then
-- client.server_capabilities.documentFormattingProvider = false
-- end
-- end)
-- end,
-- },
},
dependencies = { dependencies = {
'saghen/blink.cmp', 'saghen/blink.cmp',
-- Automatically install LSPs and related tools to stdpath for Neovim -- Automatically install LSPs and related tools to stdpath for Neovim
@ -618,7 +637,11 @@ require('lazy').setup({
} }
local lspconfig = require 'lspconfig' local lspconfig = require 'lspconfig'
-- lspconfig.sqls.setup {
-- on_attach = function(client, bufnr)
-- require('sqls').on_attach(client, bufnr)
-- end,
-- }
-- Setup tsserver -- Setup tsserver
lspconfig.ts_ls.setup {} lspconfig.ts_ls.setup {}
end, end,
@ -934,6 +957,13 @@ require('lazy').setup({
typescript = { 'prettier', stop_after_first = true }, typescript = { 'prettier', stop_after_first = true },
typescriptreact = { 'prettier', stop_after_first = true }, typescriptreact = { 'prettier', stop_after_first = true },
javascriptreact = { 'prettier', stop_after_first = true }, javascriptreact = { 'prettier', stop_after_first = true },
sql = { 'sqlfluff' },
},
formatters = {
sqlfluff = {
command = 'sqlfluff',
args = { 'format', '--dialect', 'postgres', '-' },
},
}, },
}, },
}, },
@ -1066,10 +1096,9 @@ require('lazy').setup({
{ -- You can easily change to a different colorscheme. { -- You can easily change to a different colorscheme.
-- Change the name of the colorscheme plugin below, and then -- Change the name of the colorscheme plugin below, and then
-- change the command in the config to whatever the name of that colorscheme is. -- change the command in the config to whatever the name of that colorscheme is.
--
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'folke/tokyonight.nvim', 'folke/tokyonight.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins. -- priority = 1000, -- Make sure to load this before all the other start plugins.
config = function() config = function()
---@diagnostic disable-next-line: missing-fields ---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup { require('tokyonight').setup {
@ -1077,17 +1106,17 @@ require('lazy').setup({
comments = { italic = false }, -- Disable italics in comments comments = { italic = false }, -- Disable italics in comments
}, },
} }
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load -- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
-- vim.cmd.colorscheme 'tokyonight-night' -- vim.cmd.colorscheme 'tokyonight-night'
-- vim.cmd.colorscheme 'kanagawa' -- vim.cmd.colorscheme 'kanagawa'
-- vim.cmd.colorscheme 'material-deep-ocean' -- vim.cmd.colorscheme 'material-darker'
vim.cmd.colorscheme 'material-darker'
-- vim.cmd.colorscheme 'obscure' -- vim.cmd.colorscheme 'obscure'
-- vim.cmd.colorscheme 'rose-pine' -- vim.cmd.colorscheme 'rose-pine'
-- vim.cmd.colorscheme 'e-ink' -- vim.cmd.colorscheme 'nordfox'
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'
end, end,

View File

@ -1,19 +1,19 @@
return { return {
'alexxGmZ/e-ink.nvim', 'alexxGmZ/e-ink.nvim',
priority = 1000,
config = function() config = function()
-- Set background BEFORE applying colorscheme -- Set background BEFORE applying colorscheme
vim.opt.background = 'light' -- or 'dark' -- vim.opt.background = 'light' -- or 'dark'
local mono = require('e-ink.palette').mono() -- local mono = require('e-ink.palette').mono()
vim.api.nvim_set_hl(0, 'Cursor', { bg = mono[16] }) -- vim.api.nvim_set_hl(0, 'Cursor', { bg = mono[16] })
vim.api.nvim_set_hl(0, 'Cursor', { fg = mono[1], bg = mono[16] }) -- vim.api.nvim_set_hl(0, 'Cursor', { fg = mono[1], bg = mono[16] })
require('e-ink').setup() -- require('e-ink').setup()
vim.cmd.colorscheme 'e-ink'
-- Get palette AFTER colorscheme setup -- Get palette AFTER colorscheme setup
local everforest = require('e-ink.palette').everforest() -- local everforest = require('e-ink.palette').everforest()
-- Target a VALID highlight group -- Target a VALID highlight group
-- vim.api.nvim_set_hl(0, 'Comment', { fg = everforest.purple }) -- vim.api.nvim_set_hl(0, 'CursorColumn', { fg = mono[16] })
-- vim.api.nvim_set_hl(0, 'CursorLine', { fg = mono[16] })
end, end,
} }

View File

@ -0,0 +1 @@
return { 'kemiller/vim-ir_black' }

View File

@ -94,11 +94,11 @@ return {
-- -- Add more groups as necessary -- -- Add more groups as necessary
-- }, -- },
-- }, -- },
-- config = function(_, opts) -- config = function(_, opts)
-- require('material').setup(opts) -- require('material').setup(opts)
-- vim.cmd 'colorscheme material-palenight' -- vim.cmd 'colorscheme material-darker'
-- end, -- end,
-- priority = 1000, -- priority = 1000,
-- }, -- },
} }
-- ... other plugins ... -- ... other plugins ...

View File

@ -0,0 +1,3 @@
return {
'EdenEast/nightfox.nvim',
}

View File

@ -1,2 +1,24 @@
return { 'AlexvZyl/nordic.nvim' } return {
'AlexvZyl/nordic.nvim',
-- lazy = false,
-- priority = 1000,
-- config = function()
-- require('nordic').load()
-- require('nordic').setup({
-- italic_comments = false,
-- italics = false
-- })
-- end,
-- styles = {
--
-- comments = { italic = false }, -- Ensure no italics are set here
-- strings = { italic = false }, -- Ensure no italics are set here
-- keywords = { italic = false }, -- Ensure no italics are set here
-- functions = { italic = false }, -- Ensure no italics are set here
-- variables = { italic = false },
-- operators = { italic = false },
-- types = { italic = false },
-- },
--
}

View File

@ -0,0 +1 @@
return { 'deparr/tairiki.nvim'}

View File

@ -0,0 +1 @@
return { 'chriskempson/vim-tomorrow-theme' }