commit 644eb49fab09f490d4700f03c4c68aaca4f98bc9 Author: Kayden Tebau Date: Fri Apr 7 18:34:48 2023 -0700 Initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d58bac1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "nvim/pack/packer/start/packer.nvim"] + path = nvim/pack/packer/start/packer.nvim + url = https://github.com/wbthomason/packer.nvim diff --git a/env-setup b/env-setup new file mode 100755 index 0000000..a3a80cd --- /dev/null +++ b/env-setup @@ -0,0 +1,17 @@ +#!/opt/homebrew/bin/fish + +set -gx XDG_CONFIG_HOME ~/Library/Application\ Config +set -gx XDG_CACHE_HOME ~/Library/Caches +set -gx XDG_DATA_HOME ~/Library/Application\ Support + +launchctl setenv XDG_CONFIG_HOME $XDG_CONFIG_HOME +launchctl setenv XDG_CACHE_HOME $XDG_CACHE_HOME +launchctl setenv XDG_DATA_HOME $XDG_DATA_HOME + +launchctl setenv ANDROID_SDK_HOME $XDG_DATA_HOME/Android +launchctl setenv CARGO_HOME $XDG_DATA_HOME/Cargo +launchctl setenv GOPATH $XDG_DATA_HOME/Go +launchctl setenv IPFS_PATH $XDG_DATA_HOME/IPFS +launchctl setenv PASSWORD_STORE_DIR "$XDG_DATA_HOME/pass" + +launchctl setenv GNUPGHOME "$XDG_DATA_HOME/gnupg" diff --git a/fish/config.fish b/fish/config.fish new file mode 100644 index 0000000..e056b4e --- /dev/null +++ b/fish/config.fish @@ -0,0 +1,30 @@ +set -x NNN_FCOLORS '0a0b060200050e080d010509' +set -x EDITOR nvim +set -gx HAXE_STD_PATH "/opt/homebrew/lib/haxe/std" + +set -g theme_display_user yes +set -g theme_display_hostname yes +set -g theme_newline_cursor yes +set -g theme_color_scheme gruvbox +set -g theme_show_exit_status yes + +eval (/opt/homebrew/bin/brew shellenv) + +fish_add_path -P -m ~/Library/bin +fish_add_path ~/.dotnet/tools + +if status is-interactive + # Commands to run in interactive sessions can go here +end + +test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish + + +set -q XDG_DATA_HOME; or set -x XDG_DATA_HOME "/Users/nullobsi/Library/Application Support" +set -q XDG_CONFIG_HOME; or set -x XDG_CONFIG_HOME "/Users/nullobsi/Library/Application Config" +set -q XDG_CACHE_HOME; or set -x XDG_CACHE_HOME "/Users/nullobsi/Library/Caches" + +if [ -f "/Users/nullobsi/Library/Application Support/antidot/env.fish" ]; source "/Users/nullobsi/Library/Application Support/antidot/env.fish"; end +if [ -f "/Users/nullobsi/Library/Application Support/antidot/alias.fish" ]; source "/Users/nullobsi/Library/Application Support/antidot/alias.fish"; end + +set -x SSH_AUTH_SOCK $GNUPGHOME/S.gpg-agent.ssh diff --git a/mpd.conf b/mpd.conf new file mode 100644 index 0000000..55d66a0 --- /dev/null +++ b/mpd.conf @@ -0,0 +1,434 @@ +# An example configuration file for MPD. +# Read the user manual for documentation: http://www.musicpd.org/doc/user/ + + +# Files and directories ####################################################### +# +# This setting controls the top directory which MPD will search to discover the +# available audio files and add them to the daemon's online database. This +# setting defaults to the XDG directory, otherwise the music directory will be +# be disabled and audio files will only be accepted over ipc socket (using +# file:// protocol) or streaming files over an accepted protocol. +# +music_directory "~/Music" +# +# This setting sets the MPD internal playlist directory. The purpose of this +# directory is storage for playlists created by MPD. The server will use +# playlist files not created by the server but only if they are in the MPD +# format. This setting defaults to playlist saving being disabled. +# +playlist_directory "~/Music/Playlists" +# +# This setting sets the location of the MPD database. This file is used to +# load the database at server start up and store the database while the +# server is not up. This setting defaults to disabled which will allow +# MPD to accept files over ipc socket (using file:// protocol) or streaming +# files over an accepted protocol. +# +#db_file "~/.mpd/database" + +# These settings are the locations for the daemon log files for the daemon. +# +# The special value "syslog" makes MPD use the local syslog daemon. This +# setting defaults to logging to syslog. +# +# If you use systemd, do not configure a log_file. With systemd, MPD +# defaults to the systemd journal, which is fine. +# +#log_file "~/.mpd/log" + +# This setting sets the location of the file which stores the process ID +# for use of mpd --kill and some init scripts. This setting is disabled by +# default and the pid file will not be stored. +# +# If you use systemd, do not configure a pid_file. +# +#pid_file "~/.mpd/pid" + +# This setting sets the location of the file which contains information about +# most variables to get MPD back into the same general shape it was in before +# it was brought down. This setting is disabled by default and the server +# state will be reset on server start up. +# +state_file "~/Library/Application Support/mpd/state" +# +# The location of the sticker database. This is a database which +# manages dynamic information attached to songs. +# +sticker_file "~/Library/Application Support/mpd/sticker.sql" +# +############################################################################### + + +# General music daemon options ################################################ +# +# This setting specifies the user that MPD will run as. MPD should never run as +# root and you may use this setting to make MPD change its user ID after +# initialization. This setting is disabled by default and MPD is run as the +# current user. +# +#user "nobody" +# +# This setting specifies the group that MPD will run as. If not specified +# primary group of user specified with "user" setting will be used (if set). +# This is useful if MPD needs to be a member of group such as "audio" to +# have permission to use sound card. +# +#group "nogroup" +# +# This setting sets the address for the daemon to listen on. Careful attention +# should be paid if this is assigned to anything other than the default, any. +# This setting can deny access to control of the daemon. Not effective if +# systemd socket activation is in use. +# +# For network +bind_to_address "any" +# +# And for Unix Socket +#bind_to_address "~/.mpd/socket" +# +# This setting is the TCP port that is desired for the daemon to get assigned +# to. +# +port "6600" +# +# Suppress all messages below the given threshold. Use "verbose" for +# troubleshooting. Available setting arguments are "notice", "info", "verbose", +# "warning" and "error". +# +#log_level "notice" +# +# Setting "restore_paused" to "yes" puts MPD into pause mode instead +# of starting playback after startup. +# +#restore_paused "no" +# +# This setting enables MPD to create playlists in a format usable by other +# music players. +# +#save_absolute_paths_in_playlists "no" +# +# This setting defines a list of tag types that will be extracted during the +# audio file discovery process. The complete list of possible values can be +# found in the user manual. +#metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc" +# +# This example just enables the "comment" tag without disabling all +# the other supported tags: +#metadata_to_use "+comment" +# +# This setting enables automatic update of MPD's database when files in +# music_directory are changed. +# +auto_update "yes" +# +# Limit the depth of the directories being watched, 0 means only watch +# the music directory itself. There is no limit by default. +# +#auto_update_depth "3" +# +############################################################################### + + +# Symbolic link behavior ###################################################### +# +# If this setting is set to "yes", MPD will discover audio files by following +# symbolic links outside of the configured music_directory. +# +#follow_outside_symlinks "yes" +# +# If this setting is set to "yes", MPD will discover audio files by following +# symbolic links inside of the configured music_directory. +# +#follow_inside_symlinks "yes" +# +############################################################################### + + +# Zeroconf / Avahi Service Discovery ########################################## +# +# If this setting is set to "yes", service information will be published with +# Zeroconf / Avahi. +# +#zeroconf_enabled "yes" +# +# The argument to this setting will be the Zeroconf / Avahi unique name for +# this MPD server on the network. %h will be replaced with the hostname. +# +#zeroconf_name "Music Player @ %h" +# +############################################################################### + + +# Permissions ################################################################# +# +# If this setting is set, MPD will require password authorization. The password +# setting can be specified multiple times for different password profiles. +# +#password "password@read,add,control,admin" +# +# This setting specifies the permissions a user has who has not yet logged in. +# +#default_permissions "read,add,control,admin" +# +############################################################################### + + +# Database ####################################################################### +# +# An example of a database section instead of the old 'db_file' setting. +# It enables mounting other storages into the music directory. +# +database { + plugin "simple" + path "~/Library/Application Support/mpd/db" + cache_directory "~/Library/Caches/mpd/" +} +# +# An example of database config for a satellite setup +# +#music_directory "nfs://fileserver.local/srv/mp3" +#database { +# plugin "proxy" +# host "other.mpd.host" +# port "6600" +#} + +# Input ####################################################################### +# +input { + plugin "curl" +# proxy "proxy.isp.com:8080" +# proxy_user "user" +# proxy_password "password" +} + +# +############################################################################### + +# Audio Output ################################################################ +# +# MPD supports various audio output types, as well as playing through multiple +# audio outputs at the same time, through multiple audio_output settings +# blocks. Setting this block is optional, though the server will only attempt +# autodetection for one sound card. +# +# An example of an ALSA output: +# +#audio_output { +# type "alsa" +# name "My ALSA Device" +## device "hw:0,0" # optional +## mixer_type "hardware" # optional +## mixer_device "default" # optional +## mixer_control "PCM" # optional +## mixer_index "0" # optional +#} +# +# An example of an OSS output: +# +#audio_output { +# type "oss" +# name "My OSS Device" +## device "/dev/dsp" # optional +## mixer_type "hardware" # optional +## mixer_device "/dev/mixer" # optional +## mixer_control "PCM" # optional +#} +# +# An example of a shout output (for streaming to Icecast): +# +#audio_output { +# type "shout" +# encoder "vorbis" # optional +# name "My Shout Stream" +# host "localhost" +# port "8000" +# mount "/mpd.ogg" +# password "hackme" +# quality "5.0" +# bitrate "128" +# format "44100:16:1" +## protocol "icecast2" # optional +## user "source" # optional +## description "My Stream Description" # optional +## url "http://example.com" # optional +## genre "jazz" # optional +## public "no" # optional +## timeout "2" # optional +## mixer_type "software" # optional +#} +# +# An example of a recorder output: +# +#audio_output { +# type "recorder" +# name "My recorder" +# encoder "vorbis" # optional, vorbis or lame +# path "/var/lib/mpd/recorder/mpd.ogg" +## quality "5.0" # do not define if bitrate is defined +# bitrate "128" # do not define if quality is defined +# format "44100:16:1" +#} +# +# An example of a httpd output (built-in HTTP streaming server): +# +#audio_output { +# type "httpd" +# name "My HTTP Stream" +# encoder "vorbis" # optional, vorbis or lame +# port "8000" +# bind_to_address "0.0.0.0" # optional, IPv4 or IPv6 +## quality "5.0" # do not define if bitrate is defined +# bitrate "128" # do not define if quality is defined +# format "44100:16:1" +# max_clients "0" # optional 0=no limit +#} +# +# An example of a pulseaudio output (streaming to a remote pulseaudio server) +# +#audio_output { +# type "pulse" +# name "My Pulse Output" +## server "remote_server" # optional +## sink "remote_server_sink" # optional +## media_role "media_role" #optional +#} +# +# An example of a winmm output (Windows multimedia API). +# +#audio_output { +# type "winmm" +# name "My WinMM output" +## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional +# or +## device "0" # optional +## mixer_type "hardware" # optional +#} +# +# An example of a wasapi output (Windows multimedia API). +# +#audio_output { +# type "wasapi" +# name "My WASAPI output" +## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional +# or +## device "0" # optional +## Exclusive mode blocks all other audio source, and get best audio quality without resampling. +## exclusive "no" # optional +## Enumerate all devices in log. +## enumerate "no" # optional +#} +# +# An example of an openal output. +# +#audio_output { +# type "openal" +# name "My OpenAL output" +## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional +#} +# +# An example of an sndio output. +# +#audio_output { +# type "sndio" +# name "sndio output" +# mixer_type "hardware" +#} +# +# An example of an OS X output: +# +audio_output { + type "osx" + name "FiiO BTR5" + mixer_type "none" + replay_gain_handler "software" + # format "96000:f:*" + hog_device "yes" + device "FiiO BTR5 " # optional + enabled "no" + always_on "yes" +# channel_map "-1,-1,0,1" # optional +} + +audio_output { + type "osx" + name "CoreAudio Default" + mixer_type "software" + replay_gain_handler "software" + hog_device "no" + enabled "yes" + always_on "no" +} +# +## Example "pipe" output: +# +#audio_output { +# type "pipe" +# name "my pipe" +# command "aplay -f cd 2>/dev/null" +## Or if you're want to use AudioCompress +# command "AudioCompress -m | aplay -f cd 2>/dev/null" +## Or to send raw PCM stream through PCM: +# command "nc example.org 8765" +# format "44100:16:2" +#} +# +## An example of a null output (for no audio output): +# +#audio_output { +# type "null" +# name "My Null Output" +# mixer_type "none" # optional +#} +# +############################################################################### + + +# Normalization automatic volume adjustments ################################## +# +# This setting specifies the type of ReplayGain to use. This setting can have +# the argument "off", "album", "track" or "auto". "auto" is a special mode that +# chooses between "track" and "album" depending on the current state of +# random playback. If random playback is enabled then "track" mode is used. +# See for +# more details about ReplayGain. +# This setting is off by default. +# +replaygain "auto" +# +# This setting sets the pre-amp used for files that have ReplayGain tags. By +# default this setting is disabled. +# +#replaygain_preamp "0" +# +# This setting sets the pre-amp used for files that do NOT have ReplayGain tags. +# By default this setting is disabled. +# +#replaygain_missing_preamp "0" +# +# This setting enables or disables ReplayGain limiting. +# MPD calculates actual amplification based on the ReplayGain tags +# and replaygain_preamp / replaygain_missing_preamp setting. +# If replaygain_limit is enabled MPD will never amplify audio signal +# above its original level. If replaygain_limit is disabled such amplification +# might occur. By default this setting is enabled. +# +#replaygain_limit "yes" +# +# This setting enables on-the-fly normalization volume adjustment. This will +# result in the volume of all playing audio to be adjusted so the output has +# equal "loudness". This setting is disabled by default. +# +#volume_normalization "no" +# +############################################################################### + +# Character Encoding ########################################################## +# +# If file or directory names do not display correctly for your locale then you +# may need to modify this setting. +# +#filesystem_charset "UTF-8" +# +############################################################################### diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..fb00720 --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,111 @@ +lua require('plugins') +lua require('lsp') + +nmap :wincmd k +nmap :wincmd j +nmap :wincmd h +nmap :wincmd l + +inoremap wincmd k +inoremap wincmd j +inoremap wincmd h +inoremap wincmd l + +tnoremap wincmd k +tnoremap wincmd j +tnoremap wincmd h +tnoremap wincmd l + +" Terminal +command Terminal below 15sp term://$SHELL |startinsert +autocmd TermOpen * set nonu +autocmd BufEnter term://* startinsert +autocmd BufLeave term://* stopinsert + +nnoremap Terminal + +" Move to previous/next +nnoremap BufferPrevious +nnoremap BufferNext +" Re-order to previous/next +nnoremap BufferMovePrevious +nnoremap > BufferMoveNext +nnoremap BufferGoto 1 +nnoremap BufferGoto 2 +nnoremap BufferGoto 3 +nnoremap BufferGoto 4 +nnoremap BufferGoto 5 +nnoremap BufferGoto 6 +nnoremap BufferGoto 7 +nnoremap BufferGoto 8 +nnoremap BufferGoto 9 +nnoremap BufferLast +" Pin/unpin buffer +nnoremap BufferPin +" Close buffer +nnoremap BufferClose +" Wipeout buffer +" :BufferWipeout +" Close commands +" :BufferCloseAllButCurrent +" :BufferCloseAllButPinned +" :BufferCloseAllButCurrentOrPinned +" :BufferCloseBuffersLeft +" :BufferCloseBuffersRight +" Magic buffer-picking mode +nnoremap BufferPick +" Sort automatically by... +nnoremap bb BufferOrderByBufferNumber +nnoremap bd BufferOrderByDirectory +nnoremap bl BufferOrderByLanguage +nnoremap bw BufferOrderByWindowNumber + +:tnoremap + +" Other: +" :BarbarEnable - enables barbar (enabled by default) +" :BarbarDisable - very bad command, should never be used +" +set background=light +set completeopt=menu,menuone,noselect +set tabstop=4 +set shiftwidth=0 +set number +set mouse=a +set cursorline +set noexpandtab +set clipboard+=unnamedplus +set colorcolumn=80 +set textwidth=72 + +" set spell +" set spelllang=en_us + +colorscheme gruvbox +" hi Normal guibg=NONE ctermbg=NONE + +let g:airline_theme= 'base16_gruvbox_light_soft' +let g:airline_powerline_fonts = 1 + + +tnoremap NnnExplorer +nnoremap NnnExplorer %:p:h +tnoremap NnnPicker +nnoremap NnnPicker + +" Use and to navigate through popup menu +inoremap pumvisible() ? "\" : "\" +inoremap pumvisible() ? "\" : "\" + +autocmd FileType markdown setlocal spell + +" Neovide +let g:neovide_transparency = 0.0 +let g:transparency = 0.90 +let g:neovide_background_color = '#f2e5bc'.printf('%x', float2nr(255 * g:transparency)) +let g:neovide_input_macos_alt_is_meta = v:true + +let g:neovide_floating_blur_amount_x = 2.0 +let g:neovide_floating_blur_amount_y = 2.0 +let g:neovide_floating_opacity = 60 + diff --git a/nvim/lua/lsp.lua b/nvim/lua/lsp.lua new file mode 100644 index 0000000..92aad69 --- /dev/null +++ b/nvim/lua/lsp.lua @@ -0,0 +1,122 @@ +-- Mappings. +-- See `:help vim.diagnostic.*` for documentation on any of the below functions +local opts = { noremap = true, silent = true } +vim.keymap.set('n', 'e', vim.diagnostic.open_float, opts) +vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, opts) +vim.keymap.set('n', ']d', vim.diagnostic.goto_next, opts) +vim.keymap.set('n', 'q', vim.diagnostic.setloclist, opts) + +-- Use an on_attach function to only map the following keys +-- after the language server attaches to the current buffer +local on_attach = function(client, bufnr) + -- Enable completion triggered by + -- vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc') + + -- Mappings. + -- See `:help vim.lsp.*` for documentation on any of the below functions + local bufopts = { noremap = true, silent = true, buffer = bufnr } + vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, bufopts) + vim.keymap.set('n', 'gd', vim.lsp.buf.definition, bufopts) + vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts) + vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, bufopts) + vim.keymap.set('n', '', vim.lsp.buf.signature_help, bufopts) + vim.keymap.set('n', 'wa', vim.lsp.buf.add_workspace_folder, bufopts) + vim.keymap.set('n', 'wr', vim.lsp.buf.remove_workspace_folder, bufopts) + vim.keymap.set('n', 'wl', function() + print(vim.inspect(vim.lsp.buf.list_workspace_folders())) + end, bufopts) + vim.keymap.set('n', 'D', vim.lsp.buf.type_definition, bufopts) + vim.keymap.set('n', 'rn', vim.lsp.buf.rename, bufopts) + vim.keymap.set('n', 'ca', vim.lsp.buf.code_action, bufopts) + vim.keymap.set('n', 'gr', vim.lsp.buf.references, bufopts) + vim.keymap.set('n', 'f', function () + vim.lsp.buf.format({ async = true }) + end, bufopts) +end + +local lsp_flags = { + -- This is the default in Nvim 0.7+ + debounce_text_changes = 150, +} + +local mason = require('mason') +local mason_lspconfig = require('mason-lspconfig') +local lspconfig = require('lspconfig') +local cmp = require('cmp') +local luasnip = require('luasnip') +local lspkind = require('lspkind') + +cmp.setup({ + snippet = { + expand = function(args) + luasnip.lsp_expand(args.body) + end, + }, + window = { + -- completion = cmp.config.window.bordered(), + -- documentation = cmp.config.window.bordered(), + }, + mapping = cmp.mapping.preset.insert({ + [''] = cmp.mapping.scroll_docs(-4), + [''] = cmp.mapping.scroll_docs(4), + [''] = cmp.mapping.complete(), + [''] = cmp.mapping.abort(), + [''] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. + }), + sources = cmp.config.sources({ + { name = 'nvim_lsp' }, + { name = 'luasnip' }, + { name = 'spell' }, + }, { + { name = 'buffer' }, + }), + formatting = { + format = lspkind.cmp_format({ + mode = 'text_symbol', + preset = 'default', + maxwidth = 50, + }), + }, +}) + +cmp.setup.cmdline('/', { + mapping = cmp.mapping.preset.cmdline(), + sources = { + { name = 'buffer' } + } +}) + +cmp.setup.cmdline(':', { + mapping = cmp.mapping.preset.cmdline(), + sources = cmp.config.sources({ + { name = 'path' } + }, { + { name = 'cmdline' } + }) +}) + +mason.setup() +mason_lspconfig.setup() + +local capabilities = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities()) + +lspconfig.util.default_config = vim.tbl_extend( + "force", + lspconfig.util.default_config, + { + on_attach = on_attach, + flags = lsp_flags, + capabilities = capabilities, + } +) + +mason_lspconfig.setup_handlers { + function(server_name) + lspconfig[server_name].setup {} + end, +} + + +--for _, server in ipairs(lsp_installer.get_installed_servers()) do +-- lspconfig[server.name].setup {} +--end diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua new file mode 100644 index 0000000..7506409 --- /dev/null +++ b/nvim/lua/plugins.lua @@ -0,0 +1,138 @@ +vim.cmd [[packadd packer.nvim]] + +require('packer').startup(function(use) + use 'wbthomason/packer.nvim' + + use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' } + + use { "ellisonleao/gruvbox.nvim" } + + use 'neovim/nvim-lspconfig' -- Configurations for Nvim LSP + + use{ + "williamboman/mason.nvim", + "williamboman/mason-lspconfig.nvim", + } + + use { + 'hrsh7th/cmp-nvim-lsp', + 'hrsh7th/cmp-buffer', + 'hrsh7th/cmp-path', + 'hrsh7th/cmp-cmdline', + 'f3fora/cmp-spell', + 'hrsh7th/nvim-cmp', + } + + use { + 'L3MON4D3/LuaSnip', + 'saadparwaiz1/cmp_luasnip' + } + use { + "luukvbaal/nnn.nvim", + } + use { + 'romgrk/barbar.nvim', + requires = {'kyazdani42/nvim-web-devicons'}, + } + + use { 'onsails/lspkind.nvim' } + use 'f-person/auto-dark-mode.nvim' + + use 'vim-airline/vim-airline' + use 'vim-airline/vim-airline-themes' +end) + +require("gruvbox").setup({ + undercurl = true, + underline = true, + bold = true, + italic = true, + strikethrough = true, + invert_selection = false, + invert_signs = false, + invert_tabline = false, + invert_intend_guides = false, + inverse = true, -- invert background for search, diffs, statuslines and errors + contrast = "soft", -- can be "hard", "soft" or empty string + overrides = {}, +}) + +require'nvim-treesitter.configs'.setup { + -- A list of parser names, or "all" + ensure_installed = "all", + + -- Install parsers synchronously (only applied to `ensure_installed`) + sync_install = false, + + -- Automatically install missing parsers when entering buffer + auto_install = true, + + -- List of parsers to ignore installing (for "all") + ignore_install = { "phpdoc" }, + + ---- If you need to change the installation directory of the parsers (see -> Advanced Setup) + -- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")! + + highlight = { + -- `false` will disable the whole extension + enable = true, + + -- NOTE: these are the names of the parsers and not the filetype. (for example if you want to + -- disable highlighting for the `tex` filetype, you need to include `latex` in this list as this is + -- the name of the parser) + -- list of language that will be disabled + disable = { }, + + -- Setting this to true will run `:h syntax` and tree-sitter at the same time. + -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). + -- Using this option may slow down your editor, and you may see some duplicate highlights. + -- Instead of true it can also be a list of languages + additional_vim_regex_highlighting = false, + }, +} + + +local cfg = { + auto_open = { +-- setup = "explorer", -- or "explorer" / "picker", auto open on setup function + --empty = false, -- only auto open on empty buffer + }, + --auto_close = false, -- close tabpage/nvim when nnn is last window + --replace_netrw = nil, -- or "explorer" / "picker" + windownav = { -- window movement mappings to navigate out of nnn + left = "", + right = "", + next = "", + prev = "", + }, + --buflisted = false, -- whether or not nnn buffers show up in the bufferlist + --quitcd = "tcd", -- or "cd" / "lcd", command to run if quitcd file is found +} + +require('nnn').setup(cfg) + +local auto_dark_mode = require('auto-dark-mode') + +auto_dark_mode.setup({ + update_interval = 1000, + set_dark_mode = function() + vim.api.nvim_set_option('background', 'dark') + vim.cmd('colorscheme gruvbox') + vim.cmd('AirlineTheme base16_gruvbox_dark_soft') + vim.cmd("let g:neovide_background_color = '#32302f'.printf('%x', float2nr(255 * g:transparency))"); + --vim.cmd('hi Normal guibg=NONE ctermbg=NONE') + end, + set_light_mode = function() + vim.api.nvim_set_option('background', 'light') + vim.cmd('colorscheme gruvbox') + vim.cmd('AirlineTheme base16_gruvbox_light_soft') + vim.cmd("let g:neovide_background_color = '#f2e5bc'.printf('%x', float2nr(255 * g:transparency))"); + --vim.cmd('hi Normal guibg=NONE ctermbg=NONE') + end, +}) +auto_dark_mode.init() + +require'bufferline'.setup { + icon_separator_active = '', + icon_separator_inactive = '', +} diff --git a/nvim/pack/packer/start/packer.nvim b/nvim/pack/packer/start/packer.nvim new file mode 160000 index 0000000..1d0cf98 --- /dev/null +++ b/nvim/pack/packer/start/packer.nvim @@ -0,0 +1 @@ +Subproject commit 1d0cf98a561f7fd654c970c49f917d74fafe1530 diff --git a/nvim/plugin/packer_compiled.lua b/nvim/plugin/packer_compiled.lua new file mode 100644 index 0000000..13aef62 --- /dev/null +++ b/nvim/plugin/packer_compiled.lua @@ -0,0 +1,187 @@ +-- Automatically generated packer.nvim plugin loader code + +if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then + vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"') + return +end + +vim.api.nvim_command('packadd packer.nvim') + +local no_errors, error_msg = pcall(function() + + local time + local profile_info + local should_profile = false + if should_profile then + local hrtime = vim.loop.hrtime + profile_info = {} + time = function(chunk, start) + if start then + profile_info[chunk] = hrtime() + else + profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6 + end + end + else + time = function(chunk, start) end + end + +local function save_profiles(threshold) + local sorted_times = {} + for chunk_name, time_taken in pairs(profile_info) do + sorted_times[#sorted_times + 1] = {chunk_name, time_taken} + end + table.sort(sorted_times, function(a, b) return a[2] > b[2] end) + local results = {} + for i, elem in ipairs(sorted_times) do + if not threshold or threshold and elem[2] > threshold then + results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms' + end + end + + _G._packer = _G._packer or {} + _G._packer.profile_output = results +end + +time([[Luarocks path setup]], true) +local package_path_str = "/Users/nullobsi/Library/Caches/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/Users/nullobsi/Library/Caches/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/Users/nullobsi/Library/Caches/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/Users/nullobsi/Library/Caches/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua" +local install_cpath_pattern = "/Users/nullobsi/Library/Caches/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so" +if not string.find(package.path, package_path_str, 1, true) then + package.path = package.path .. ';' .. package_path_str +end + +if not string.find(package.cpath, install_cpath_pattern, 1, true) then + package.cpath = package.cpath .. ';' .. install_cpath_pattern +end + +time([[Luarocks path setup]], false) +time([[try_loadstring definition]], true) +local function try_loadstring(s, component, name) + local success, result = pcall(loadstring(s), name, _G.packer_plugins[name]) + if not success then + vim.schedule(function() + vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {}) + end) + end + return result +end + +time([[try_loadstring definition]], false) +time([[Defining packer_plugins]], true) +_G.packer_plugins = { + LuaSnip = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/LuaSnip", + url = "https://github.com/L3MON4D3/LuaSnip" + }, + ["auto-dark-mode.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/auto-dark-mode.nvim", + url = "https://github.com/f-person/auto-dark-mode.nvim" + }, + ["barbar.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/barbar.nvim", + url = "https://github.com/romgrk/barbar.nvim" + }, + ["cmp-buffer"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/cmp-buffer", + url = "https://github.com/hrsh7th/cmp-buffer" + }, + ["cmp-cmdline"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/cmp-cmdline", + url = "https://github.com/hrsh7th/cmp-cmdline" + }, + ["cmp-nvim-lsp"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/cmp-nvim-lsp", + url = "https://github.com/hrsh7th/cmp-nvim-lsp" + }, + ["cmp-path"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/cmp-path", + url = "https://github.com/hrsh7th/cmp-path" + }, + ["cmp-spell"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/cmp-spell", + url = "https://github.com/f3fora/cmp-spell" + }, + cmp_luasnip = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/cmp_luasnip", + url = "https://github.com/saadparwaiz1/cmp_luasnip" + }, + ["gruvbox.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/gruvbox.nvim", + url = "https://github.com/ellisonleao/gruvbox.nvim" + }, + ["lspkind.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/lspkind.nvim", + url = "https://github.com/onsails/lspkind.nvim" + }, + ["mason-lspconfig.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/mason-lspconfig.nvim", + url = "https://github.com/williamboman/mason-lspconfig.nvim" + }, + ["mason.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/mason.nvim", + url = "https://github.com/williamboman/mason.nvim" + }, + ["nnn.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/nnn.nvim", + url = "https://github.com/luukvbaal/nnn.nvim" + }, + ["nvim-cmp"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/nvim-cmp", + url = "https://github.com/hrsh7th/nvim-cmp" + }, + ["nvim-lspconfig"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/nvim-lspconfig", + url = "https://github.com/neovim/nvim-lspconfig" + }, + ["nvim-treesitter"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/nvim-treesitter", + url = "https://github.com/nvim-treesitter/nvim-treesitter" + }, + ["nvim-web-devicons"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/nvim-web-devicons", + url = "https://github.com/kyazdani42/nvim-web-devicons" + }, + ["packer.nvim"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/packer.nvim", + url = "https://github.com/wbthomason/packer.nvim" + }, + ["vim-airline"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/vim-airline", + url = "https://github.com/vim-airline/vim-airline" + }, + ["vim-airline-themes"] = { + loaded = true, + path = "/Users/nullobsi/Library/Application Support/nvim/site/pack/packer/start/vim-airline-themes", + url = "https://github.com/vim-airline/vim-airline-themes" + } +} + +time([[Defining packer_plugins]], false) +if should_profile then save_profiles() end + +end) + +if not no_errors then + error_msg = error_msg:gsub('"', '\\"') + vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None') +end diff --git a/omf/bundle b/omf/bundle new file mode 100644 index 0000000..abef50c --- /dev/null +++ b/omf/bundle @@ -0,0 +1,2 @@ +theme bobthefish +theme default diff --git a/omf/channel b/omf/channel new file mode 100644 index 0000000..2bf5ad0 --- /dev/null +++ b/omf/channel @@ -0,0 +1 @@ +stable diff --git a/omf/theme b/omf/theme new file mode 100644 index 0000000..ff8a58d --- /dev/null +++ b/omf/theme @@ -0,0 +1 @@ +bobthefish