Compare commits
No commits in common. "8ce25925bed9f4affd5a0616dc40ca679aae6eab" and "0aeec225539cc6b74736106223a21da9635d240c" have entirely different histories.
8ce25925be
...
0aeec22553
6 changed files with 13 additions and 55 deletions
|
@ -27,8 +27,6 @@ include monokai.conf
|
|||
|
||||
allow_remote_control yes
|
||||
wayland_titlebar_color system
|
||||
map kitty_mod+k clear_terminal reset active
|
||||
map kitty_mod+F5 launch --location=hsplit --cwd=current
|
||||
map kitty_mod+F6 launch --location=vsplit --cwd=current
|
||||
map ctrl+insert copy_to_clipboard
|
||||
map shift+insert paste_from_clipboard
|
||||
map kitty_mod+k clear_terminal reset active
|
||||
map kitty_mod+F5 launch --location=hsplit --cwd=current
|
||||
map kitty_mod+F6 launch --location=vsplit --cwd=current
|
||||
|
|
|
@ -11,9 +11,9 @@ vim.g.maplocalleader = " "
|
|||
vim.cmd([[packadd packer.nvim]])
|
||||
|
||||
require("options")
|
||||
require("plugins")
|
||||
require("keymaps")
|
||||
require("autocommands")
|
||||
require("plugins")
|
||||
require("lsp")
|
||||
require("dap")
|
||||
|
||||
|
|
|
@ -67,13 +67,14 @@ vim.api.nvim_create_autocmd("BufWinEnter", {
|
|||
end,
|
||||
})
|
||||
|
||||
local treeapi = require("nvim-tree.api")
|
||||
|
||||
vim.api.nvim_create_autocmd("BufEnter", {
|
||||
callback = function()
|
||||
if vim.bo.filetype == "NvimTree" or vim.fn.expand("%") == "" then
|
||||
return
|
||||
end
|
||||
vim.schedule(function()
|
||||
local treeapi = require("nvim-tree.api")
|
||||
treeapi.tree.find_file({
|
||||
update_root = false,
|
||||
focus = false,
|
||||
|
|
|
@ -6,6 +6,7 @@ conform.setup({
|
|||
typescript = { "prettier" },
|
||||
javascriptreact = { "prettier" },
|
||||
typescriptreact = { "prettier" },
|
||||
svelte = { "prettier" },
|
||||
css = { "prettier" },
|
||||
html = { "prettier" },
|
||||
json = { "prettier" },
|
||||
|
|
|
@ -1,47 +1,5 @@
|
|||
require("nvim-treesitter.configs").setup({
|
||||
highlight = { enable = true },
|
||||
ensure_installed = {
|
||||
"c",
|
||||
"lua",
|
||||
"python",
|
||||
"bash",
|
||||
"go",
|
||||
"html",
|
||||
"css",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"git_config",
|
||||
"git_rebase",
|
||||
"gitattributes",
|
||||
"gitcommit",
|
||||
"gitignore",
|
||||
"gomod",
|
||||
"gosum",
|
||||
"gotmpl",
|
||||
"gowork",
|
||||
"hjson",
|
||||
"ini",
|
||||
"json",
|
||||
"json5",
|
||||
"jsonnet",
|
||||
"latex",
|
||||
"make",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"nginx",
|
||||
"proto",
|
||||
"rust",
|
||||
"templ",
|
||||
"todotxt",
|
||||
"toml",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"vim",
|
||||
"vimdoc",
|
||||
"xml",
|
||||
"yaml",
|
||||
"sql",
|
||||
"ssh_config",
|
||||
},
|
||||
ignore_install = { "gdhsader", "phpdoc" },
|
||||
})
|
||||
require('nvim-treesitter.configs').setup{
|
||||
ensure_installed = 'all',
|
||||
ignore_install = { 'phpdoc' },
|
||||
highlight = { enable = true }
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ antigen apply
|
|||
# Exports
|
||||
|
||||
#export GOPROXY=https://proxy.neonxp.ru
|
||||
export GOPRIVATE=devopar.hippoparking.ru,gitlab.sovcombank.group
|
||||
export GOPRIVATE=devopar.hippoparking.ru
|
||||
export EDITOR="nvim"
|
||||
#export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
||||
export ANDROID_HOME=$HOME/projects/android/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue