diff --git a/dot_config/fish/executable_config.fish b/dot_config/fish/executable_config.fish index b25bb26..1e44494 100644 --- a/dot_config/fish/executable_config.fish +++ b/dot_config/fish/executable_config.fish @@ -3,6 +3,11 @@ function setpath test -e $argv[1]; and set PATH $argv[1] $PATH end +# Custom greeting +function fish_greeting + +end + if test -z "$XDG_RUNTIME_DIR" set -x XDG_RUNTIME_DIR "/tmp/$USER-runtime-dir" if test ! -e "$XDG_RUNTIME_DIR" @@ -11,19 +16,18 @@ if test -z "$XDG_RUNTIME_DIR" end end -# Set Nix include path if it exists -if test -e ~/.nix-profile/etc/profile.d/nix.sh - fenv source ~/.nix-profile/etc/profile.d/nix.sh +if test -e /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh + fenv source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh end # PATH adjustment +setpath /opt/local/bin setpath /opt/homebrew/bin setpath ~/.rbenv/shims setpath ~/.rbenv/bin setpath ~/.cargo/bin setpath ~/.nimble/bin setpath ~/.local/bin -setpath ~/n/bin setpath ~/.bin setpath ~/.cask/bin setpath ~/.npm-packages/bin @@ -32,6 +36,8 @@ setpath /snap/bin setpath ~/.emacs.d/bin setpath ~/Library/Python/3.7/bin setpath ~/.radicle/bin +setpath ~/.edgedb/bin +setpath ~/.fly/bin # zoxide setup zoxide init fish | source @@ -75,6 +81,7 @@ alias mkt "cd (mktemp -d)" alias y "sudo zypper" alias czm "chezmoi" alias r "ranger" +alias zcc "zig cc" # Git Aliases alias g "git" alias gs "g status --short" diff --git a/dot_config/fish/executable_fishfile b/dot_config/fish/executable_fishfile deleted file mode 100644 index 0068c8b..0000000 --- a/dot_config/fish/executable_fishfile +++ /dev/null @@ -1,7 +0,0 @@ -jethrokuan/z -jorgebucaran/fish-nvm -oh-my-fish/plugin-foreign-env -jorgebucaran/fisher -mattgreen/lucid.fish -franciscolourenco/done -laughedelic/pisces diff --git a/dot_config/nvim/init.lua b/dot_config/nvim/init.lua deleted file mode 100644 index 77ec8b3..0000000 --- a/dot_config/nvim/init.lua +++ /dev/null @@ -1,16 +0,0 @@ --- options -require('options') - --- packages -require('pack') - --- keymaps -require('mappings') - --- plugin stuff -require('plugins.setups') -require('plugins.telescope') -require('plugins.lspconfig') -require('plugins.hardline') -require('plugins.treesitter') -require('plugins.compe') diff --git a/dot_config/nvim/lua/common.lua b/dot_config/nvim/lua/common.lua deleted file mode 100644 index 9d47eca..0000000 --- a/dot_config/nvim/lua/common.lua +++ /dev/null @@ -1,13 +0,0 @@ -local vim = vim -local M = {} - -function M.set_keymap(mode, from, to) - local opts = {noremap = true, silent = false} - vim.api.nvim_set_keymap(mode, from, to, opts) -end - -function M.nvim_set_keymap(mode, from, to, opts) - vim.api.nvim_set_keymap(mode, from, to, opts) -end - -return M diff --git a/dot_config/nvim/lua/mappings.lua b/dot_config/nvim/lua/mappings.lua deleted file mode 100644 index f30bb45..0000000 --- a/dot_config/nvim/lua/mappings.lua +++ /dev/null @@ -1,57 +0,0 @@ -local set_keymap = require('common').set_keymap - --- reload vimrc -set_keymap('n', 'sv', 'Reload') - --- basic -set_keymap('n', 'q', 'q!') -set_keymap('n', 'x', 'x') --- moving -set_keymap('n', '', 'I') -set_keymap('n', 'j', 'gj') -set_keymap('n', 'k', 'gk') --- editing -set_keymap('n', 'Y', 'y$') -set_keymap('n', '', 'm .-2') -set_keymap('n', '', 'm .+1') -set_keymap('i', '', 'ddi') --- splits -set_keymap('n', 's', 'v') -set_keymap('n', 'j', 'j') -set_keymap('n', 'k', 'k') -set_keymap('n', 'h', 'h') -set_keymap('n', 'l', 'l') --- tabs -set_keymap('n', '', 'gT') -set_keymap('n', '', 'gt') -set_keymap('n', 't[', 'tabmove -1') -set_keymap('n', 't]', 'tabmove +1') -set_keymap('n', '1', '1gt') -set_keymap('n', '2', '2gt') -set_keymap('n', '3', '3gt') -set_keymap('n', '4', '4gt') -set_keymap('n', '5', '5gt') -set_keymap('n', '6', '6gt') -set_keymap('n', '7', '7gt') -set_keymap('n', '8', '8gt') -set_keymap('n', '9', '9gt') -set_keymap('n', '0', 'tablast') --- LSP -set_keymap('n', 'ld', 'lua vim.lsp.buf.definition()') -set_keymap('n', 'lD', 'lua vim.lsp.buf.declaration()') -set_keymap('n', 'lt', 'lua vim.lsp.buf.type_definition()') -set_keymap('n', 'li', 'lua vim.lsp.buf.implementation()') -set_keymap('n', 'K', 'lua vim.lsp.buf.hover()') -set_keymap('n', 'U', 'lua vim.lsp.buf.signature_help()') -set_keymap('n', 'lr', 'lua vim.lsp.buf.references()') -set_keymap('n', 'ls', 'lua vim.lsp.buf.document_symbol()') -set_keymap('n', 'lS', 'lua vim.lsp.buf.workspace_symbol()') -set_keymap('n', 'lR', 'lua vim.lsp.buf.rename()') -set_keymap('n', 'lf', 'lua vim.lsp.buf.formatting()') --- plug manager -set_keymap('n', 'pi', 'PaqInstall') -set_keymap('n', 'pu', 'PaqUpdate') -set_keymap('n', 'pc', 'PaqClean') --- hop -set_keymap('n', 'hw', 'HopWord') -set_keymap('n', 'hl', 'HopLine') diff --git a/dot_config/nvim/lua/options.lua b/dot_config/nvim/lua/options.lua deleted file mode 100644 index 8792693..0000000 --- a/dot_config/nvim/lua/options.lua +++ /dev/null @@ -1,59 +0,0 @@ -local cmd = vim.cmd -local opt = vim.opt -local has = vim.fn.has - -cmd('filetype plugin indent on') -cmd('syntax enable') - --- system -opt.encoding = 'utf-8' -opt.fileencoding = 'utf-8' -opt.fileencodings = {'utf-8'} -opt.backup = false -- no .bak -opt.swapfile = false -- no .swap -opt.undofile = true -- use undo file -opt.updatetime = 300 -- time (in ms) to write to swap file --- buffer -opt.expandtab = true -opt.tabstop = 2 -opt.softtabstop = 2 -opt.autoindent = true -opt.shiftwidth = 2 --- window -opt.number = true --- editing -vim.g.mapleader = ' ' --space -vim.g.maplocalleader = ' ' -opt.whichwrap = 'b,s,<,>,[,]' -opt.backspace = {'indent', 'eol', 'start'} -opt.list = true -opt.ignorecase = false -opt.hlsearch = true -opt.incsearch = false -opt.inccommand = 'nosplit' -opt.completeopt = {'menuone', 'noselect'} -opt.hidden = true -opt.cursorline = true -opt.ruler = true -opt.colorcolumn = {120} -opt.signcolumn = 'yes' -opt.mouse = 'nv' -cmd('set mousehide') -opt.showmatch = true -opt.cmdheight = 2 -opt.wildmenu = true -opt.wildmode = {'longest', 'full'} -opt.splitright = true -opt.splitbelow = true -opt.shortmess:append('c') - -if not has('gui_running') then - opt.t_Co = 256 -end - -opt.background = 'dark' -if has('termguicolors') then - cmd('let &t_8f = "\\[38;2;%lu;%lu;%lum"') - cmd('let &t_8b = "\\[48;2;%lu;%lu;%lum"') - opt.termguicolors = true -end diff --git a/dot_config/nvim/lua/pack.lua b/dot_config/nvim/lua/pack.lua deleted file mode 100644 index f8c3751..0000000 --- a/dot_config/nvim/lua/pack.lua +++ /dev/null @@ -1,47 +0,0 @@ -local vim = vim - -vim.cmd 'packadd paq-nvim' -local paq = require'paq-nvim'.paq -paq{'savq/paq-nvim', opt = true} - --- libraries -paq 'nvim-lua/popup.nvim' -paq 'nvim-lua/plenary.nvim' - --- files -paq 'tjdevries/colorbuddy.nvim' -- color highlighting -paq 'maaslalani/nordbuddy' -- theme -paq 'mhinz/vim-startify' -- startup page -paq 'nvim-telescope/telescope.nvim' -- fuzzy finder -paq 'rmagatti/auto-session' -- auto session -paq 'rmagatti/session-lens' -- session lens for telescope -paq 'crispgm/telescope-heading.nvim' -- markdown heading for telescope - --- views -paq 'ojroques/nvim-hardline' -- status line -paq 'crispgm/nvim-tabline' -- tab line -paq 'dstein64/nvim-scrollview' -- scrollbar -paq 'google/vim-searchindex' -- search index -paq 'editorconfig/editorconfig-vim' -- editorconfig support -paq 'RRethy/vim-illuminate' -- word highlighting -paq 'lewis6991/gitsigns.nvim' -- git gutter -paq 'f-person/git-blame.nvim' -- git blame annotations - --- edit -paq 'phaazon/hop.nvim' -- hopping around -paq 'tpope/vim-surround' -- change surrounds -paq 'tpope/vim-commentary' -- comment stuff out/in -paq 'christoomey/vim-system-copy' -- copy n paste into system clipboard -paq 'steelsojka/pears.nvim' -- auto bracket match and other stuff - --- language -paq {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'} -- treesitter -paq 'nvim-treesitter/playground' -- ts playground -paq 'nvim-treesitter/nvim-treesitter-textobjects' -- ts textobjects -paq 'neovim/nvim-lspconfig' -- lsp client config -paq 'hrsh7th/nvim-compe' -- completion -paq 'rust-lang/rust.vim' -- rust support -paq 'elixir-editors/vim-elixir' -- elixir support - --- misc -paq 'famiu/nvim-reload' -- reloading the vimrc diff --git a/dot_config/nvim/lua/plugins/compe.lua b/dot_config/nvim/lua/plugins/compe.lua deleted file mode 100644 index 9c0e7f8..0000000 --- a/dot_config/nvim/lua/plugins/compe.lua +++ /dev/null @@ -1,36 +0,0 @@ -require'compe'.setup { - enabled = true; - autocomplete = true; - debug = false; - min_length = 1; - preselect = 'enable'; - throttle_time = 80; - source_timeout = 200; - incomplete_delay = 400; - max_abbr_width = 100; - max_kind_width = 100; - max_menu_width = 100; - documentation = true; - - source = { - path = true; - buffer = true; - calc = true; - vsnip = true; - nvim_lsp = true; - nvim_lua = true; - spell = true; - tags = true; - snippets_nvim = true; - treesitter = true; - } -} - -local vim = vim -local opts = { - noremap = true, - silent = true, - expr = true, -} -vim.api.nvim_set_keymap('i', '', "compe#confirm('')", opts) -vim.api.nvim_set_keymap('i', '', "compe#close('')", opts) diff --git a/dot_config/nvim/lua/plugins/hardline.lua b/dot_config/nvim/lua/plugins/hardline.lua deleted file mode 100644 index 0234573..0000000 --- a/dot_config/nvim/lua/plugins/hardline.lua +++ /dev/null @@ -1,16 +0,0 @@ -require('hardline').setup { - bufferline = false, - sections = { - {class = 'mode', item = require('hardline.parts.mode').get_item}, - {class = 'high', item = require('hardline.parts.git').get_item, hide = 80}, - '%<', - {class = 'med', item = require('hardline.parts.filename').get_item}, - {class = 'med', item ='%='}, - {class = 'low', item = require('hardline.parts.wordcount').get_item, hide = 80}, - {class = 'error', item = require('hardline.parts.lsp').get_error}, - {class = 'warning', item = require('hardline.parts.lsp').get_warning}, - {class = 'warning', item = require('hardline.parts.whitespace').get_item}, - {class = 'high', item = require('hardline.parts.filetype').get_item, hide = 80}, - {class = 'mode', item = require('hardline.parts.line').get_item}, - }, -} diff --git a/dot_config/nvim/lua/plugins/lspconfig.lua b/dot_config/nvim/lua/plugins/lspconfig.lua deleted file mode 100644 index 0b8389b..0000000 --- a/dot_config/nvim/lua/plugins/lspconfig.lua +++ /dev/null @@ -1,5 +0,0 @@ -require('lspconfig').tsserver.setup{} -require('lspconfig').rust_analyzer.setup{} -require('lspconfig').elixirls.setup { - cmd = {'/Users/lu/.local/bin/elixir-ls/language_server.sh'} -} diff --git a/dot_config/nvim/lua/plugins/setups.lua b/dot_config/nvim/lua/plugins/setups.lua deleted file mode 100644 index 370e62b..0000000 --- a/dot_config/nvim/lua/plugins/setups.lua +++ /dev/null @@ -1,5 +0,0 @@ -local vim = vim - -require('tabline').setup{} -require('gitsigns').setup() -vim.api.nvim_command('colorscheme nordbuddy') diff --git a/dot_config/nvim/lua/plugins/telescope.lua b/dot_config/nvim/lua/plugins/telescope.lua deleted file mode 100644 index cd57ca8..0000000 --- a/dot_config/nvim/lua/plugins/telescope.lua +++ /dev/null @@ -1,25 +0,0 @@ -require('telescope').load_extension('session-lens') -require('telescope').load_extension('heading') - -local set_keymap = require('../common').set_keymap -set_keymap('n', 'ff', 'Telescope find_files') -set_keymap('n', 'p', 'Telescope find_files') -- alternative cuz im used to it from vscode -set_keymap('n', '', 'Telescope find_files') -- another alternative, this time from doom emacs -set_keymap('n', 'fd', 'Telescope git_files') -set_keymap('n', 'fg', 'Telescope live_grep') -set_keymap('n', 'fb', 'Telescope buffers') -set_keymap('n', 'fh', 'Telescope help_tags') -set_keymap('n', 'fl', 'Telescope lsp_document_symbols') -set_keymap('n', 'fk', 'Telescope keymaps') -set_keymap('n', 'fm', 'Telescope heading') - -local actions = require('telescope.actions') -require('telescope').setup{ - defaults = { - mappings = { - i = { - [''] = actions.close - }, - }, - } -} diff --git a/dot_config/nvim/lua/plugins/treesitter.lua b/dot_config/nvim/lua/plugins/treesitter.lua deleted file mode 100644 index 2397e15..0000000 --- a/dot_config/nvim/lua/plugins/treesitter.lua +++ /dev/null @@ -1,37 +0,0 @@ -require'nvim-treesitter.configs'.setup { - highlight = { - enable = true - }, - ensure_installed = 'maintained', - indent = { - enable = true - }, - incremental_selection = { - enable = true, - keymaps = { - init_selection = 'gnn', - node_incremental = 'grn', - scope_incremental = 'grc', - node_decremental = 'grm' - }, - }, - playground = { - enable = true, - disable = {}, - updatetime = 25, - persist_queries = false - }, - textobjects = { - select = { - enable = true, - keymaps = { - ['af'] = '@function.outer', - ['if'] = '@function.inner', - ['ac'] = '@class.outer', - ['ic'] = '@class.inner', - ['aP'] = '@parameter.outer', - ['iP'] = '@parameter.inner' - } - } - } -} diff --git a/dot_gitconfig b/dot_gitconfig index af68976..205c0d1 100644 --- a/dot_gitconfig +++ b/dot_gitconfig @@ -1,7 +1,7 @@ [user] - name = mokou - email = mokou@fastmail.com - signingkey = 0x53A8BB015F9EAE63 + name = ana + email = ana@ana.st + signingkey = 0x6F33B647A7AC80CE [core] editor = vim [push] @@ -10,7 +10,9 @@ rebase = true [rebase] autoStash = true +[gpg] + program = /usr/local/bin/gpg [sendemail] smtpserver = /opt/homebrew/bin/msmtp -[gpg] - program = gpg +[init] + defaultBranch = main