Compare commits
No commits in common. "1c1015d95f54d0c5e216193615be3896053b1b4f" and "f08e1712cfb07da5311ff05056c1bb95d6987c2e" have entirely different histories.
1c1015d95f
...
f08e1712cf
7 changed files with 2 additions and 21 deletions
|
@ -1,7 +1,6 @@
|
||||||
alias bat="batcat"
|
alias bat="batcat"
|
||||||
alias co='checkout'
|
alias co='checkout'
|
||||||
alias e="find-edit"
|
alias e="find-edit"
|
||||||
alias fcd="cd \$(find . -type d | fzf)"
|
|
||||||
alias ff="find_files"
|
alias ff="find_files"
|
||||||
alias getclip='xclip -selection clipboard -o'
|
alias getclip='xclip -selection clipboard -o'
|
||||||
alias hello='echo "Hello :)"'
|
alias hello='echo "Hello :)"'
|
||||||
|
|
|
@ -5,7 +5,7 @@ for _, language in ipairs {
|
||||||
"html",
|
"html",
|
||||||
"cssls",
|
"cssls",
|
||||||
"clangd",
|
"clangd",
|
||||||
"tsserver",
|
"denols",
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"solargraph",
|
"solargraph",
|
||||||
"standardrb",
|
"standardrb",
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
return function()
|
return function()
|
||||||
require('neo-tree').setup {
|
require('neo-tree').setup {
|
||||||
window = {
|
window = {
|
||||||
position = "right";
|
|
||||||
width = 25;
|
width = 25;
|
||||||
};
|
};
|
||||||
filesystem = {
|
filesystem = {
|
||||||
|
|
|
@ -2,7 +2,6 @@ return function()
|
||||||
vim.keymap.set("n", "<leader>o", "<cmd>OutlineOpen<CR><cmd>OutlineFocus<CR>", { desc = "Toggle Outline" })
|
vim.keymap.set("n", "<leader>o", "<cmd>OutlineOpen<CR><cmd>OutlineFocus<CR>", { desc = "Toggle Outline" })
|
||||||
require("outline").setup {
|
require("outline").setup {
|
||||||
outline_window = {
|
outline_window = {
|
||||||
position = "left";
|
|
||||||
width = 20;
|
width = 20;
|
||||||
relative_width = false;
|
relative_width = false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
local config = require 'lspconfig'
|
|
||||||
|
|
||||||
local default = { on_attach = require 'lsp.attach' }
|
|
||||||
for _, language in ipairs {
|
|
||||||
"html",
|
|
||||||
"cssls",
|
|
||||||
"clangd",
|
|
||||||
"tsserver",
|
|
||||||
"lua_ls",
|
|
||||||
"solargraph",
|
|
||||||
"standardrb",
|
|
||||||
"zls",
|
|
||||||
} do
|
|
||||||
config[language].setup(default)
|
|
||||||
end
|
|
1
vim/plugin/lsp.vim
Normal file
1
vim/plugin/lsp.vim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
lua require 'lsp.setup'
|
2
zshrc
2
zshrc
|
@ -16,8 +16,6 @@ setopt hist_find_no_dups
|
||||||
setopt prompt_subst
|
setopt prompt_subst
|
||||||
setopt hist_ignore_space
|
setopt hist_ignore_space
|
||||||
|
|
||||||
autoload -U compinit; compinit
|
|
||||||
|
|
||||||
bindkey -v
|
bindkey -v
|
||||||
|
|
||||||
which task > /dev/null && which jq > /dev/null
|
which task > /dev/null && which jq > /dev/null
|
||||||
|
|
Loading…
Reference in a new issue