Compare commits
5 commits
7885fd706c
...
b2f64a574f
Author | SHA1 | Date | |
---|---|---|---|
b2f64a574f | |||
9431c74529 | |||
2f4814158e | |||
40bc6fca8d | |||
6f44bdbce2 |
9 changed files with 52 additions and 51 deletions
|
@ -46,6 +46,4 @@ vim.opt.signcolumn = "yes"
|
||||||
vim.opt.autoread = true
|
vim.opt.autoread = true
|
||||||
-- disable swapfile
|
-- disable swapfile
|
||||||
vim.opt.swapfile = false
|
vim.opt.swapfile = false
|
||||||
--Make completion stop on command ambiguity
|
vim.opt.laststatus = 3
|
||||||
vim.opt.wildmenu = true
|
|
||||||
vim.opt.wildmode = 'longest:full,full'
|
|
||||||
|
|
|
@ -51,5 +51,10 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"m4xshen/hardtime.nvim",
|
||||||
|
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||||
|
opts = {}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,6 @@ 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,12 +20,6 @@ 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,13 +27,6 @@ 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,22 +8,53 @@ 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,6 +14,8 @@ 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,9 +47,8 @@ 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
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
<?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