-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
Tue Dec 3 09:45:29 PM +04 2024 Tue Dec 10 06:25:51 PM +04 2024 Tue Dec 10 07:27:59 PM +04 2024 refactored luasnip refactored gsettings removed do not disturb mode fixed a typo refactored noice and changed cmdline to neovim's default bottom one. disabled noice, refactored file names. Fri Dec 13 06:52:15 PM +04 2024 refactored to LazyVim 14 and enabled noice.nvim Sat Dec 14 01:06:07 PM +04 2024 Sat Dec 14 01:06:24 PM +04 2024 Sat Dec 14 01:08:12 PM +04 2024 Sat Dec 14 01:11:23 PM +04 2024 final refactor for today. fixed a typo NOTE removed un-needed dependency and refactored autocmds.lua LazyVim v14 refactoring Sun Dec 15 05:16:50 PM +04 2024 updated gitconfig and fzf-lua Tue Dec 17 06:48:21 PM +04 2024 Update start.sh Update start.sh updated readme to put zsh installation BEFORE start.sh refactored Update packages_apt.sh Update README.md Update start.sh Update .gitconfig Update packages_flatpak.sh Update _install.sh Update start.sh
- Loading branch information
Showing
26 changed files
with
111 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
[user] | ||
name = Irakli_Tatarashvili | ||
email = 116330974+[email protected]. | ||
name = monoira | ||
email = [email protected] | ||
[init] | ||
defaultBranch = main | ||
[credential "https://github.com"] | ||
helper = | ||
helper = !/usr/bin/gh auth git-credential | ||
[credential "https://gist.github.com"] | ||
helper = | ||
helper = !/usr/bin/gh auth git-credential |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "<--- installing postman... --->" | ||
flatpak install flathub --user -y com.getpostman.Postman | ||
flatpak install flathub -y com.getpostman.Postman |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
require("config.lazy") | ||
|
||
-- NOTE: DATABASES | ||
-- this is what it's content is supposed to look like | ||
-- ~/.config/nvim/lua/config/dbs.lua content example | ||
-- vim.g.dbs = { | ||
-- { name = "dev", url = "postgres://<username>:<password>@<host>:<port>/<database>" }, | ||
-- { name = "dev", url = "postgres://USERNAME:PASSWORD@HOST:PORT/DATABASE_NAME" }, | ||
-- } | ||
require("config.dbs") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
-- Autocmds are automatically loaded on the VeryLazy event | ||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua | ||
-- Add any additional autocmds here | ||
|
||
-- HACK: this disables stupid "No information available" notification on every hover | ||
-- ex: shift+k on Typescript code | ||
local banned_messages = { "No information available" } | ||
vim.notify = function(msg, ...) | ||
for _, banned in ipairs(banned_messages) do | ||
if msg == banned then | ||
return | ||
end | ||
end | ||
return msg, ... | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
return { | ||
{ "folke/noice.nvim", enabled = false }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
return { | ||
"ibhagwan/fzf-lua", | ||
config = function() | ||
-- calling `setup` is optional for customization | ||
require("fzf-lua").setup({ | ||
file_ignore_patterns = { | ||
"node_modules/", | ||
"dist/", | ||
".next", | ||
".git/", | ||
".gitlab/", | ||
"build/", | ||
"target/", | ||
"yarn.lock", | ||
"package-lock.json", | ||
}, | ||
}) | ||
end, | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
return { | ||
"L3MON4D3/LuaSnip", | ||
lazy = true, | ||
dependencies = { | ||
"rafamadriz/friendly-snippets", | ||
config = function() | ||
require("luasnip.loaders.from_vscode").lazy_load() | ||
require("luasnip.loaders.from_vscode").lazy_load({ paths = "~/.config/nvim/snippets" }) | ||
end, | ||
}, | ||
opts = { | ||
history = true, | ||
delete_check_events = "TextChanged", | ||
}, | ||
require("luasnip.loaders.from_vscode").lazy_load({ paths = "~/.config/nvim/snippets" }), | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
return { | ||
"brenoprata10/nvim-highlight-colors", | ||
config = function() | ||
require("nvim-highlight-colors").setup({ | ||
---Render style | ||
---@usage 'background'|'foreground'|'virtual' | ||
render = "background", | ||
|
||
---Set virtual symbol (requires render to be set to 'virtual') | ||
virtual_symbol = "■", | ||
|
||
---Highlight named colors, e.g. 'green' | ||
enable_named_colors = true, | ||
|
||
---Highlight tailwind colors, e.g. 'bg-blue-500' | ||
enable_tailwind = true, | ||
}) | ||
end, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.