Compare commits
No commits in common. "b2f64a574ff3d449171572a0fe17147336d6f193" and "7885fd706c7460f2661b3070e1f1fb381bbabed0" have entirely different histories.
b2f64a574f
...
7885fd706c
9 changed files with 51 additions and 52 deletions
|
@ -46,4 +46,6 @@ vim.opt.signcolumn = "yes"
|
||||||
vim.opt.autoread = true
|
vim.opt.autoread = true
|
||||||
-- disable swapfile
|
-- disable swapfile
|
||||||
vim.opt.swapfile = false
|
vim.opt.swapfile = false
|
||||||
vim.opt.laststatus = 3
|
--Make completion stop on command ambiguity
|
||||||
|
vim.opt.wildmenu = true
|
||||||
|
vim.opt.wildmode = 'longest:full,full'
|
||||||
|
|
|
@ -51,10 +51,5 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
}
|
||||||
{
|
|
||||||
"m4xshen/hardtime.nvim",
|
|
||||||
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
|
||||||
opts = {}
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@ return {
|
||||||
{
|
{
|
||||||
"smjonas/inc-rename.nvim",
|
"smjonas/inc-rename.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
|
input_buffer_type = "dressing",
|
||||||
save_in_cmdline_history = false,
|
save_in_cmdline_history = false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -20,6 +20,12 @@ return {
|
||||||
end, { desc = "Previous todo comment" })
|
end, { desc = "Previous todo comment" })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"TobinPalmer/pastify.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
cmd = { "Pastify" },
|
||||||
|
opts = {},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'eandrju/cellular-automaton.nvim',
|
'eandrju/cellular-automaton.nvim',
|
||||||
config = function()
|
config = function()
|
||||||
|
|
|
@ -27,6 +27,13 @@ return {
|
||||||
treesitter.setup(options)
|
treesitter.setup(options)
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"nvim-treesitter/nvim-treesitter-context",
|
||||||
|
event = "VeryLazy",
|
||||||
|
config = function()
|
||||||
|
require 'treesitter-context'.setup()
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'echasnovski/mini.ai',
|
'echasnovski/mini.ai',
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
|
|
|
@ -8,53 +8,22 @@ return {
|
||||||
vim.g.tpipeline_statusline = '%=%l:%c'
|
vim.g.tpipeline_statusline = '%=%l:%c'
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"j-hui/fidget.nvim",
|
||||||
|
opts = {
|
||||||
|
progress = {
|
||||||
|
display = {
|
||||||
|
render_limit = 3,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
--Better quick fix
|
||||||
{
|
{
|
||||||
'kevinhwang91/nvim-bqf',
|
'kevinhwang91/nvim-bqf',
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
ft = 'qf'
|
ft = 'qf'
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
"folke/noice.nvim",
|
|
||||||
event = "VeryLazy",
|
|
||||||
opts = {
|
|
||||||
views = {
|
|
||||||
cmdline_popup = {
|
|
||||||
position = {
|
|
||||||
row = "100%",
|
|
||||||
col = "0%",
|
|
||||||
},
|
|
||||||
size = {
|
|
||||||
min_width = 60,
|
|
||||||
width = "auto",
|
|
||||||
height = "auto",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
cmdline_popupmenu = {
|
|
||||||
relative = "editor",
|
|
||||||
position = {
|
|
||||||
row = "85%",
|
|
||||||
col = "0%",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
lsp = {
|
|
||||||
override = {
|
|
||||||
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
|
||||||
["vim.lsp.util.stylize_markdown"] = true,
|
|
||||||
["cmp.entry.get_documentation"] = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
presets = {
|
|
||||||
long_message_to_split = true, -- long messages will be sent to a split
|
|
||||||
inc_rename = true, -- enables an input dialog for inc-rename.nvim
|
|
||||||
},
|
|
||||||
},
|
|
||||||
dependencies = {
|
|
||||||
"MunifTanjim/nui.nvim",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
-- {
|
-- {
|
||||||
-- "OXY2DEV/markview.nvim",
|
-- "OXY2DEV/markview.nvim",
|
||||||
-- ft = "markdown",
|
-- ft = "markdown",
|
||||||
|
|
|
@ -14,8 +14,6 @@ if [[ $(uname) == "Darwin" ]]; then
|
||||||
export PATH="/opt/homebrew/bin:$PATH"
|
export PATH="/opt/homebrew/bin:$PATH"
|
||||||
export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"
|
export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"
|
||||||
export PATH="/opt/homebrew/opt/texlive/bin:$PATH"
|
export PATH="/opt/homebrew/opt/texlive/bin:$PATH"
|
||||||
export GEM_HOME=$HOME/.gem
|
|
||||||
export PATH=$PATH:$GEM_HOME/bin
|
|
||||||
else
|
else
|
||||||
#ONLY LINUX
|
#ONLY LINUX
|
||||||
export LIBVA_DRIVER_NAME=nvidia
|
export LIBVA_DRIVER_NAME=nvidia
|
||||||
|
|
|
@ -47,8 +47,9 @@ unset __conda_setup
|
||||||
if [ -f "$HOME/.miniforge3/etc/profile.d/mamba.sh" ]; then
|
if [ -f "$HOME/.miniforge3/etc/profile.d/mamba.sh" ]; then
|
||||||
. "$HOME/.miniforge3/etc/profile.d/mamba.sh"
|
. "$HOME/.miniforge3/etc/profile.d/mamba.sh"
|
||||||
fi
|
fi
|
||||||
# <<< conda initialize <<<
|
|
||||||
|
|
||||||
|
# <<< conda initialize <<<
|
||||||
|
eval "$(direnv hook zsh)"
|
||||||
if [[ $(uname) == "Darwin" ]]; then
|
if [[ $(uname) == "Darwin" ]]; then
|
||||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||||
fi
|
fi
|
||||||
|
|
20
Library/LaunchAgents/ethernetstatus.plist
Normal file
20
Library/LaunchAgents/ethernetstatus.plist
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>Label</key>
|
||||||
|
<string>net.francof.ethernetstatus</string>
|
||||||
|
<key>ProgramArguments</key>
|
||||||
|
<array>
|
||||||
|
<string>/Users/afonso/.local/bin/ethernetstatus</string>
|
||||||
|
<string>Ethernet Status</string>
|
||||||
|
</array>
|
||||||
|
<key>RunAtLoad</key>
|
||||||
|
<true/>
|
||||||
|
<key>WatchPaths</key>
|
||||||
|
<array>
|
||||||
|
<string>/Library/Preferences/SystemConfiguration</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
|
|
Loading…
Reference in a new issue