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
" vim: foldmethod=marker:foldmarker={{{,}}}:foldlevelstart=0:foldclose=all: | |
set title | |
set wrap | |
set splitright | |
set expandtab | |
set splitbelow | |
set number | |
set relativenumber | |
set termguicolors | |
set nofoldenable |
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
require('mason-lspconfig').setup { | |
ensure_installed = { | |
'lua_ls', | |
'vimls', | |
-- 'yamlls', | |
'azure_pipelines_ls', | |
'volar', | |
'pyright', | |
'bashls', | |
'tsserver', |
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
local cmp = require('cmp') | |
local lspkind = require('lspkind') | |
local t = function(str) | |
return vim.api.nvim_replace_termcodes(str, true, true, true) | |
end | |
local fk = vim.api.nvim_feedkeys | |
vim.g.copilot_no_tab_map = true | |
vim.g.copilot_assume_mapped = true |
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
local function on_attach(bufnr) | |
local api = require('nvim-tree.api') | |
local function opts(desc) | |
return { desc = 'nvim-tree: ' .. desc, buffer = bufnr, noremap = true, silent = true, nowait = true } | |
end | |
-- Default mappings. Feel free to modify or remove as you wish. | |
-- |
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
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
brew "[email protected]" | |
brew "autojump" | |
brew "azure-cli" | |
brew "docker-compose" | |
brew "fd" | |
brew "gh" |
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
@echo on | |
set my_app=/home/linuxbrew/.linuxbrew/bin/nvim | |
set my_wt_profile="Ubuntu" | |
set pp=%1 | |
:: remove quote | |
set pp=%pp:"=% | |
:: wsl can't handle mapped drive | |
if "%pp:~1,1%"==":" ( | |
if not "%pp:~0,1%"=="C" ( |
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
CapsLock::Esc | |
return | |
MButton:: | |
Send ^w | |
return | |
+!r:: | |
Reload | |
TrayTip "Reload", "Success" |
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
" vim: foldmethod=marker:foldmarker={{{,}}}:foldlevelstart=0:foldclose=all: | |
set title | |
set wrap | |
set splitright | |
set expandtab | |
set splitbelow | |
set number | |
set relativenumber | |
set termguicolors | |
set nofoldenable |
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
# Reconstructed via infocmp from file: /usr/local/Cellar/ncurses/6.3/share/terminfo/74/tmux-256color | |
tmux-256color|tmux with 256 colors, | |
OTbs, OTpt, am, hs, km, mir, msgr, xenl, AX, G0, | |
colors#0x100, cols#80, it#8, lines#24, pairs#0x32767, U8#1, | |
acsc=++\,\,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, | |
bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, | |
clear=\E[H\E[J, cnorm=\E[34h\E[?25h, cr=\r, | |
csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H, | |
cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C, | |
cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\EM, |
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
local config_path = vim.fn.stdpath('config') | |
local status_ok, alpha = pcall(require, 'alpha') | |
if not status_ok then return end | |
local path_ok, path = pcall(require, 'plenary.path') | |
if not path_ok then return end | |
local nwd = require('nvim-web-devicons') | |
local dashboard = require('alpha.themes.dashboard') |
NewerOlder